diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-13 16:16:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 16:16:32 -0400 |
commit | 5360c14c46d904c67e8fd26824819725b4fa62ff (patch) | |
tree | 4734c3387645630e3092ef858b2433159a8abdf6 /sram.asm | |
parent | 30c327276c937e06e3c8b7990cb9029937739f8e (diff) | |
parent | 4eeab8973c8367b3ae8885d158197392489e6174 (diff) |
Merge pull request #56 from Rangi42/master
Disassemble the final English debug ROMs
Diffstat (limited to 'sram.asm')
-rw-r--r-- | sram.asm | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -89,13 +89,16 @@ sBackupPlayerData1:: ds wPlayerData1End - wPlayerData SECTION "SRAM Stack", SRAM sStackTop:: dw -sUnusedRTCMinutes:: db -sUnusedRTCHours:: db +sRTCHaltCheckValue:: dw SECTION "SRAM Window Stack", SRAM -sWindowStackTop:: ds 1 +sWindowStackBottom:: + ds $800 - 1 +sWindowStack:: +sWindowStackTop:: + ds 1 SECTION "Save", SRAM |