(Link to video)

Introduction

Meet MAT, a young boy destined to exit Prof. Elm's lab from the opposite side, struggle to send mail through the glitch city postal system, and instantly beat the legendary Red. Seems legit.

Emulator used: Bizhawk 2.4.1

  • SubGBHawk was used for this movie, as it requires a very precise subframe reset (~60 μs)
  • CGB in GBA is enabled, as to conform to RTA standards, and for theoretical future console verification.

Categories

  • Aims for fastest completion of the game
  • Heavy glitch abuse
  • Corrupts save data
  • Corrupts memory
  • No luck manipulation[1]
  • Attempts to send mail through the glitch city postal system

Game objectives

Save Corruption

You may recall that Crystal stores a 16-bit checksum for the main save, for detecting corruption and loading the backup save when needed. You may also recall that this checksum is very weak,[2] simply being the sum of all the bytes in the main save data. Cleared save data has a checksum of $0000, which can be reached with box names. However, in this movie, box names cannot be used, so it is not possible to raise the checksum enough to overflow $ffff to $0000.[3] This movie opts to save sometime before going into the lab, then collide with that save's checksum. This movie specifically wants to zero out Cyndaquil's moves, which only has a ~1/16 ms window to work with. SubGBHawk makes this fairly easy to do, thankfully.

Type 0xD1 Corruption

Move 0x00 has the glitch type 0xD1 on the move list screen. This type's name is sourced from $8091, which is in VRAM. VRAM is subject to locking, where all reads return 0xFF and writes have no affect. Viewing this type will cause a buffer overflow and will corrupt the map, but with the right VRAM timing and with some string buffers filled, it will be terminated before the corruption crashes the game, leaving us with a glitched lab, and most importantly, the walls are now gone and we can now go into map 0xFF00.

Glitch Map 0xFF00 Corruption

A quick run down of the relevant parts of the video, Gen 2 marks "no connection" by setting wMapGroup to $FF, wMapNumber is whatever was on the last map connection. Upon a S/Q, wMapNumber for "no connection" is set to $00.[4] Map 0xFF00 is not a valid map, and causes massive corruption in our items, badges, money, etc. due to a buffer overflow of its map objects (it has 36 map objects, the maximum typically allowed is 15). However, it is sourced entirely in ROM, meaning it causes consistent corruption, and that corruption happens to allow us to quickly do item underflow. However, typically this map causes a crash. This can be avoided though, by simply entering the map from the north side of the lab, which will immediately transport us to map 0x071C,[5] after the corruption.

Item Underflow

Item underflow is very simple, if there somehow happens to be an item with x255 quantity, and you toss any tossable[6] item that is above that x255 item, then the game will simply copy the x255 item to the slot above it along with decreasing the item count. You can repeat this until 00 underflows to 255, then you can access items below the main items pocket, which allows for effective creation of any item.

Item Creation

To understand how this item creation works, you need to understand how Gen 2 structures the pockets used to store items. The player gets 5 pockets for storing items. They are the TM/HMs Pocket, the Main Items Pocket, the Key Items Pocket, the Balls Pocket, and the PC.[7] These pockets are lined up in RAM in that order, but they do not all share the same structure. The TM/HMs pocket allocates a byte for each TM/HM, and the value in that byte determines how much of that TM you have. Which TM is simply assumed based on where the byte is. The Main Items, Balls, and PC share the same structure, the first byte is the item ID, and the second byte is the quantity. The Key Items pocket, however, is different, forgoing the quantity byte, as Key Items don't have quantities. However, if say an item that does use a quantity ends up in the Key Items pocket, then it will take the item ID of the next item as its quantity.[8] Item creation simply abuses these structural differences, now that with item underflow we effectively have x255 items in the Main Items pocket, we can swap a main item into the Key Items Pocket (remember, the Key Items Pocket is right below the Main Items Pocket), with the quantity of that main item becoming an item in the Key Items Pocket now... Well, actually that's what the initial submission did, the Balls Pocket happens to be misaligned relative to the Main Items Pocket, making quantities Item IDs and Item IDs quantities.
Item Tossing
One input per frame. Left/Right decrease/increase the toss count by 10, Up/Down increase/decrease the toss count by 1, all respectively. Toss counts will wrap around accordingly. The same directional cannot be pressed twice in a row. Different directions (e.g. Up/Right) cannot be pressed on the same frame.
In this movie, PP Ups are tossed to specifically create Music Mail,[9] for the purpose of the first payload.

Wrong Pocket TM22

Recall that the TM/HM pocket's structure is different than the Main Items/Balls/PC. As a note, the game allows the player to store TMs/HMs in the PC, meaning all TMs/HMs have item IDs to be compatible with the PC. So, what happens if you use a TM/HM in a pocket that allows the player to use items? The game goes past the valid pointers and interprets some asm instructions as pointers, some allowing for ACE. This is typically not used in speedruns, as 0x1500 ACE is faster most of the time, but with the corrupted item pack and the game conveniently giving us TM22, this is faster.
TM22 is used specifically because of its pointer, $d106.[10] This points to wCurItem, which slides down to two fully controllable bytes, wItemQuantityChangeBuffer and wItemQuantityBuffer... well, post-initial submission I realized from this video I have another mostly controllable byte: wCurItemQuantity (and this label is a lie, it's just the position the item is in the pocket). I pretend to toss 233 items, and put TM22 into the 37th slot create the bootstrap. This bootstrap will jump into the mail buffer, which has enough space for the first payload.
;af = $0600
;bc = $0007
;de = $d078
;hl = $d106

dec h ; wCurItemQuantity, h = $d0
~~~
jp hl ; wItemQuantityChangeBuffer
This jumps to $d006, which is in the middle of the mail buffer.[11]

Arbitrary Code Execution

This movie uses MrWint's joypad to opcode payload, but it has been modified to work with mail. Refer to his submission for how it works. Note, the first 2 bytes of wTempMail will be overwritten by item swaps, so another item swap is used to turn them into harmless opcodes. There is another catch, f cannot be maintained for the input opcode, due to the position of the written opcode. The following mimics gifvex's submission:
Mail Message
Very similar to box names.[12] One input every 2 frames. The same button cannot be pressed two inputs in a row (or it's a hold). Directionals can be pressed consecutively if a new button or directional is also pressed. Example: Up 2 can be done in two inputs with UP -> UP|LEFT. Priority for two directionals at once is UP > DOWN > LEFT > RIGHT. If A and a direction are input together, A is processed then the cursor moves. The same is true for Start; Start is processed then the cursor moves.[13] Where the cursor moves when pressing Up/Down on UPPER/lower/DEL/END depends on where those slots are entered; Start defaults to the right side. Start and A cannot be used together, nor Start and Select.
Thanks to MrWint for the format:
BytesInstructionComment
($effb)(any)Execute opcode written last cycle
00 x6nop x6Slides back down to the mail buffer
ea cd 75ld (75cd),aDoes nothing
f5push afSave a and f for next cycle
f0 a4ldh a,($ffa4)Reads current joypad inputs into a
aaxor dd stores last joypad input: find out differences to current input
ea fb efld ($effb),aWrite difference; will be executed as opcode later in the next cycle
aaxor dRestore current joypad input value
f5push afCopy current joypad input from a...
d1pop de... to d (store it as last joypad input)
7fld a,aFiller, does nothing
f1pop afRestore a and f from the previous cycle
fe 4ecp $4eLine break is $4e, which is a bad opcode, cp makes it taken as data
a7and aClears carry flag, needed for the jump
d2 fb efjp nc, $effbLoop back to written opcode; carry will never be set
The second payload can be found here. It largely does the same thing as gifvex's payload, although I also have to set wTileUp to something with collision,[14] or else I won't be able to warp.

Route

Intro

  • Save data is cleared for morality reasons. This isn't really needed as we collide with valid save data anyways, but it conforms to RTA standards, and breaking the 4 minute barrier by forgoing this clear would be a very shallow victory.
    • Minor note, the above was said when the submission was barely sub 4, now it's 3:55. Regardless, the same message is true, forgoing wiping save data doesn't actually provide any actual game-play related time save, so it shouldn't be considered real time save.
  • Options are not set as text can print at the fast speed when A or B is held anyway.
  • Unlike most glitch runs, the trainer ID is not manipulated. The TID is not used (and can't be used) for the bootstrap, and the trainer ID does not affect collision.
  • The player is selected to be the boy. The choice of boy and girl does not affect collision, and the boy has a shorter default name.
  • The default name MAT is chosen. The player name does not affect collision, and the player name is not seen enough to warrant naming him a 1 character name.

New Bark Town

  • Mom is talked to directly to avoid the exclamation point animation that plays if the player tries to walk past. It is a couple frames faster to do this.
  • The game is saved right outside the house to setup collision.
  • Cyndaquil is chosen as it is the closest starter to the player. Its DVs do not matter for ACE or collision, so they are ignored. As you can guess by now, the nickname does not affect collision, so no nickname is given.
  • The game is saved inside the lab, but it is reset before Cyndaquil's moves are written. The save is delayed by some frames to line up the IGT for checksum collision.
  • The Aide cutscene is taken, as it will fill up two string buffers, which greatly prevents move 0x00 from crashing the game from its corruption.[15]
  • Move 0x00's type is viewed from the moves list. With the right VRAM timing, this causes the map to become corrupted, allowing entry to map 0xFF00.

Glitch City

  • Cyndaquil's held item was corrupted, and needs to be taken off before item underflow is done.
  • HP Up is moved to the top of the item list, tossed, then PP Up x255 is then tossed 6 times for item underflow.
  • Music Mail is created and used to store the first payload.
  • After swapping TM22 to the 37th slot, the pocket is swapped to the Main Items pocket, where I pretend to toss 233 items, then swap TM42, then the pocket is swapped back to the Balls Pocket, where TM22 is used.
  • Auto input takes over and talks to Red, completing the run.

Suggested Screenshots

I like footnotes

[1] Technically, there is some luck manipulation in the form of getting the right VRAM timing, but it is minor if anything.
[2] For the time and with the GBC's capabilities, it was a good enough checksumming system, but it is a joke compared to anything today.
[3] From testing, the most I could raise the checksum was to the $dxxx range.
[4] This isn't actually too relevant, since the north map connection would be 0xFF00 anyways, but it makes it clear why we will always get map 0xFF00 upon a S/Q, which I do anyways for checksum collison.
[5] Map 0x071C is actually this room, but the player enters way outside of the room.
[6] If an item is in the wrong pocket, e.g. a TM in the Main Items pocket, the game does not let you toss it, and such item underflow does not work with such items.
[7] The PC isn't technically a "pocket" per se, but it is functionally similar to a pocket, so it will be referred to as such for simplicity.
[8] Note that you can't actually toss anything in the Key Items pocket for the reason listed in footnote #6.
[9] Music Mail and Mirage Mail are the fastest to obtain, but Music Mail is used due to "? received x Mail" textbox, saving 1 frame over the Mirage Mail.
[10] This pointer is derived from the wCurItem in this line.
[11] wTempMail - wTempMailMessageEnd is $d002 - $d022
[12] Main difference is that the first input can be A B START or SELECT.
[13] This is true for box names too, I am noticing that gifvex's TAS did not use this tech within their TAS. Likely was an oversight.
[14] $FF was chosen for the collision value as it could easily be obtained by reading $FF00 (a disabled register).
[15] The correct corruption can technically happen without using the Aide cutscene, but it would take too long to get the right VRAM timing, and it would not be entertaining in my opinion.

ThunderAxe31: Judging.
ThunderAxe31: File replaced with a 839 vblanks 257 frames improvement.
ThunderAxe31: File replaced with a version that correctly returns to Mt. Silver after the credits, at cost of 7 additional frames.
ThunderAxe31: The ending is performed as expected, including the cutscene where Red disappears into nothingness and the credits getting rolled.
There are some aspects I want to note about the initialization of the save file. Before starting the game, this movie uses an input combination for clearing the save data. Secret input combinations are forbidden for use, as they are considered as in-game cheats, unless they are mentioned on the official game manual, which is the case here.
It is normally not required to wipe out the SRAM of a game, or otherwise overwriting uninitialized bytes. However, Pokémon Gen II games have an unique quirk, for which I considered to be a good practice to use the built-in functionality for formatting the save file. The fact is that most Game Boy games (as well as many other consoles) are usually programmed to consider the SRAM as properly empty or formatted if it consists of 0xFF bytes, in its entirety or in specific SRAM addresses. This is the reason why our emulators are programmed to initialize the SRAM of Game Boy games as 0xFF bytes, as in many cases it proved to avoid unintended game behaviors, even though on real console the initial data of these bytes is always random and unpredictable (this is probably also why most games use a basic checksum for save file validity). However, Pokémon Gen II games are an exception, as there are strong evidences pointing out that these games instead consider the save data as empty when it's made of 0x00 bytes. In particular, the built-in functionality for formatting the save file does overwrite the whole SRAM to 0x00 bytes, as opposed to 0xFF for Pokémon Gen I games. This is why I consider that it should be required to format the save data during the movie, as it clears any doubts about the validity of the save glitch performed. On a side note, wiping the save data shouldn't be required if the save glitch doesn't rely on reading uninitialized bytes, however for this movie I confirm that it desyncs if the SRAM is kept to be 0xFF bytes.
Accepting for obsoleting the published Pokémon Crystal "save glitch" movie.
Note for the publisher: the movie length displayed in the submission is incorrect, as the site's movie parser still needs to be updated for reading the CycleCount value of SubGBHawk movies. The correct timing for this submission should be 3:55.59. Also note that BizHawk 2.4.2 doesn't correctly count the cycles for SubGBHawk movies that feature hard resets, so the latest dev build should be used for that instead. I already corrected the CycleCount value for this movie, though. It should be 988133805.
Spikestuff: Publishing. Time got fixed.

EZGames69
He/They
Publisher, Reviewer, Expert player (3968)
Joined: 5/29/2017
Posts: 2707
Location: Michigan
I recorded a video of what it sounds like on a GBA (I plugged it into my computer speakers and put my phone’s mic up to it, I do not know if it picks up any popping going on but I could not notice any popping going on) Link to video
[14:15] <feos> WinDOES what DOSn't 12:33:44 PM <Mothrayas> "I got an oof with my game!" Mothrayas Today at 12:22: <Colin> thank you for supporting noble causes such as my feet MemoryTAS Today at 11:55 AM: you wouldn't know beauty if it slapped you in the face with a giant fish [Today at 4:51 PM] Mothrayas: although if you like your own tweets that's the online equivalent of sniffing your own farts and probably tells a lot about you as a person MemoryTAS Today at 7:01 PM: But I exert big staff energy honestly lol Samsara Today at 1:20 PM: wouldn't ACE in a real life TAS just stand for Actually Cease Existing
Alyosha
He/Him
Editor, Expert player (3532)
Joined: 11/30/2014
Posts: 2728
Location: US
Thanks for testing. Sounds pretty clear on GBA. I looked into the documentation on GBDev, and apparently sound on GBA is produced differently then on GBC, but this particular case shouldn't be effected by it. The popping in Crystal here comes from turning off channel one in the mixer while it is still active. This should definitely produce a pop on all systems, due to DC bias in the DAC. On a real system, the pop is probably attenuated by filtering, but I don't have any filtering so it comes out pretty sharp. I did tune the bias in master though so the popping is much less noticeable, hopefully it sounds better now. (Side note, following the spec here broke sound on two games, ready to rumble and cannon fodder. This is because they turn the wave channel off to update the wave channel constantly. This produces a very noticeable humming. On Youtube I saw a video also mentioning it for ready to rumble, so maybe it's accurate? I believe on GBA these issues wouldn't show up at all because the DACs there are always treated as on. I have not updated audio for GBA mode though, so it will have to stay broken for now.)
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
Alyosha wrote:
I did tune the bias in master though so the popping is much less noticeable, hopefully it sounds better now.
Thanks alyosha, it sounds much better. Encode with the fixed audio: https://youtu.be/rEcqPC-4OnQ
Alyosha
He/Him
Editor, Expert player (3532)
Joined: 11/30/2014
Posts: 2728
Location: US
I made one more adjustment that 'fixes' ready to rumble and cannon fodder (sounds closer to videos I watch.) I don't think it changes anything here. I tried adding a high pass filter, but it didn't sound any different and slowed things down a lot, so I didn't commit it. So I think I'm done fiddling with audio for now unless something sounds very obviously wrong.
Judge, Skilled player (1288)
Joined: 9/12/2016
Posts: 1645
Location: Italy
Alyosha wrote:
I looked into the documentation on GBDev, and apparently sound on GBA is produced differently then on GBC, but this particular case shouldn't be effected by it.
Actually... Link to video I also tried unplugging the jack and then recording the speaker of the GBC, but recording quality wasn't as good as I hoped. Anycase, I'm telling you that it did hear the very same as when I tried listening with headphonese: I couldn't hear any popping during the BIOS screen (one at beginning and one at end), but only when clearing the text boxes during the music-less part of the new game intro. Edit: actually, now I can hear the popping at the beginning and at end of BIOS screen, from my GBC as well. However, I can't hear any popping while the music fades after picking "NEW GAME". Anycase, we need someone checking on a Crystal cartridge to be sure, because in my test I used an Italian Pokémon Silver one.
my personal page - my YouTube channel - my GitHub - my Discord: thunderaxe31 <Masterjun> if you look at the "NES" in a weird angle, it actually clearly says "GBA"
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
ThunderAxe31 wrote:
Alyosha wrote:
I looked into the documentation on GBDev, and apparently sound on GBA is produced differently then on GBC, but this particular case shouldn't be effected by it.
Actually... https://youtu.be/jceEj-x01Bo [MOD EDIT: unembedding] I also tried unplugging the jack and then recording the speaker of the GBC, but recording quality wasn't as good as I hoped. Anycase, I'm telling you that it did hear the very same as when I tried listening with headphonese: I couldn't hear any popping during the BIOS screen, but only when clearing the text boxes during the music-less part of the new game intro.
So sounds like GBC just has less filtering than the GBA. Funnily enough, the level of popping seems to be identical to GBHawk, so this is probably the best we get for accurate sound. (unless we want to have some argument that since this is CGB in GBA it needs GBA sound lol)
Alyosha
He/Him
Editor, Expert player (3532)
Joined: 11/30/2014
Posts: 2728
Location: US
Thanks for the continued testing. Looking at the schematic, even going through the headphone jack adds some more filtering, so there are probably lots of variations in what you can hear. I've always had a weak ear for audio issues, and all the variability just makes it more annoying.
Judge, Skilled player (1288)
Joined: 9/12/2016
Posts: 1645
Location: Italy
CasualPokePlayer wrote:
(unless we want to have some argument that since this is CGB in GBA it needs GBA sound lol)
Indeed, if we want to bring in the fact that this submission uses GBCinGBA mode, then it would make sense to have less popping, but then we would need BizHawk to emulate it differently whether GBCinGBA is used or not. And then, for coherency, we would also need to use Vivid palette for GBCinGBA (or something similar).
my personal page - my YouTube channel - my GitHub - my Discord: thunderaxe31 <Masterjun> if you look at the "NES" in a weird angle, it actually clearly says "GBA"
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
ThunderAxe31 wrote:
CasualPokePlayer wrote:
(unless we want to have some argument that since this is CGB in GBA it needs GBA sound lol)
Indeed, if we want to bring in the fact that this submission uses GBCinGBA mode, then it would make sense to have less popping, but then we would need BizHawk to emulate it differently whether GBCinGBA is used or not. And then, for coherency, we would also need to use Vivid palette for GBCinGBA (or something similar).
Not really an option actually, GBHawk has a single palette you can use (what you see on the temp encodes, seems to be more or less an in between with VBA Accurate and Vivid). There are no other palette options.
Judge, Skilled player (1288)
Joined: 9/12/2016
Posts: 1645
Location: Italy
CasualPokePlayer wrote:
Not really an option actually, GBHawk has a single palette you can use (what you see on the temp encodes, seems to be more or less an in between with VBA Accurate and Vivid). There are no other palette options.
Not really a problem actually, implementing additional palettes wouldn't be too hard. For example, a new palette was recently added for Gambatte, Libretro GBC.
my personal page - my YouTube channel - my GitHub - my Discord: thunderaxe31 <Masterjun> if you look at the "NES" in a weird angle, it actually clearly says "GBA"
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
ThunderAxe31 wrote:
Not really a problem actually, implementing additional palettes wouldn't be too hard. For example, a new palette was recently added for Gambatte, Libretro GBC.
Funnily enough this has been an open issue for months. https://github.com/TASVideos/BizHawk/issues/1866 Wonder why it hasn't been done yet, lack of GBHawk users? Regardless, perhaps this could be a good time to add Gambatte's palettes, assuming no objections from alyosha. Admittedly, I am sorta liking Libretro GBC for Crystal...
Alyosha
He/Him
Editor, Expert player (3532)
Joined: 11/30/2014
Posts: 2728
Location: US
Palettes are too low a priority for me to focus on. (I'd accept a PR for something like that tough.)
Player (50)
Joined: 4/1/2016
Posts: 285
Location: Cornelia Castle
Quick question, not directly related to this TAS, but how do you plug a GBA into computer speakers?
DJ Incendration Believe in Michael Girard and every speedrunner and TASer!
EZGames69
He/They
Publisher, Reviewer, Expert player (3968)
Joined: 5/29/2017
Posts: 2707
Location: Michigan
DJ Incendration wrote:
Quick question, not directly related to this TAS, but how do you plug a GBA into computer speakers?
Same way you plug headphones into a GBA, with an auxiliary cord.
[14:15] <feos> WinDOES what DOSn't 12:33:44 PM <Mothrayas> "I got an oof with my game!" Mothrayas Today at 12:22: <Colin> thank you for supporting noble causes such as my feet MemoryTAS Today at 11:55 AM: you wouldn't know beauty if it slapped you in the face with a giant fish [Today at 4:51 PM] Mothrayas: although if you like your own tweets that's the online equivalent of sniffing your own farts and probably tells a lot about you as a person MemoryTAS Today at 7:01 PM: But I exert big staff energy honestly lol Samsara Today at 1:20 PM: wouldn't ACE in a real life TAS just stand for Actually Cease Existing
CoolHandMike
He/Him
Editor, Reviewer, Experienced player (636)
Joined: 3/9/2019
Posts: 582
Lol good job! Always enjoy these corruption type tases.
discord: CoolHandMike#0352
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
Not to sound impatient at all, but I've noted that my TAS here was submitted nearly 2 months ago, and there's been no activity on this thread for over a month. What's been going on?
Judge, Skilled player (1288)
Joined: 9/12/2016
Posts: 1645
Location: Italy
I've been waiting for the new BizHawk version to be released, since with the current one there would result inaccuracies on both video and audio for this TAS. But if you want, I can accept it now anyway... Edit: oh and there is another problem. The site's movie parser doesn't currently read the CycleCount from SubGBHawk movies, so we still need to wait for the site coders to fix that.
my personal page - my YouTube channel - my GitHub - my Discord: thunderaxe31 <Masterjun> if you look at the "NES" in a weird angle, it actually clearly says "GBA"
Reviewer, Active player (277)
Joined: 12/14/2006
Posts: 717
This is a pretty significant improvement over the previous TAS. I'd say the proper course of action would be to accept this movie and make a note to the encoder to wait for a version of the emulator with better audio. The problem isn't whether the input file is acceptable for the site.
Site Admin, Skilled player (1236)
Joined: 4/17/2010
Posts: 11268
Location: RU
arkiandruski wrote:
This is a pretty significant improvement over the previous TAS. I'd say the proper course of action would be to accept this movie and make a note to the encoder to wait for a version of the emulator with better audio. The problem isn't whether the input file is acceptable for the site.
We need to be sure it syncs on that future release.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Emulator Coder, Judge, Experienced player (608)
Joined: 2/26/2020
Posts: 697
Location: California
So I was informed by Thunder that the game will crash if you press A at "The End" instead of going to the Mt. Silver Pokemon Center. After going through the tracelog, I found out that the cause of the crash is due to some minor stack corruption when going to Map 0xFF00, which will make the game return to FF00 (ie rJOY, which will be disabled) instead of 1:5E76, which just results in rst 38 being executed which crashes the game. The fix was actually as simple as writing the correct values back into the stack, which just requires 7 more frames to execute the code needed to do that. Movie file: http://tasvideos.org/userfiles/info/65213740338583941 Diff for the payload: https://www.diffchecker.com/8pdQnd2b
Post subject: Movie published
TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14879
Location: 127.0.0.1
This movie has been published. The posts before this message apply to the submission, and posts after this message apply to the published movie. ---- [4285] GBC Pokémon: Crystal Version "save glitch" by CasualPokePlayer in 03:55.59