Cyjorg
tiny.cc/19XXTE
@ _glook @ Achilles1515 @ Dan Salvato#********************************************
# Enabling high memory use
#
#********************************************
#this one line makes it possible for us to use higher areas of
#memory (on the memcard) for whatever. This command is altering
#the buffer overflow exploit's code to zero out the memcard range.
#this is the original line:
#POKE 8045D984 60A5D71C
#the memory card usually ends at 8046B0EC, the array starts at 8045D9D0.
#we want it to end at 80469D3C, so the diff is C36C.
POKE 8045D984 60A5C36C
#In a normal game, this is (well, I guess it is) harmless, as it's just
#some random int inside of the name entry area.
#some tests:
POKE 80469D3C DDFFEEBB
Was looking through the source for the crazy mod and wanted to make sure this hadn't been overlooked