diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-22 09:20:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-22 09:20:33 -0400 |
commit | a586811e197d2a28d3a08dff03548fb69342da96 (patch) | |
tree | d5eec033243b0031afd3a82d47bbe1b7779d1675 /home/sram.asm | |
parent | 5ec276e7c77244befe0b6c9931cda191aa3818b6 (diff) | |
parent | 5b4ef99f4bfec7a1cf41cd3eab601d355bb0fadf (diff) |
Merge pull request #38 from luckytyphlosion/section-reorg
Add linkerscript to replace completely anonymous sections.
Diffstat (limited to 'home/sram.asm')
-rw-r--r-- | home/sram.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home/sram.asm b/home/sram.asm index 87f2335..da27c81 100644 --- a/home/sram.asm +++ b/home/sram.asm @@ -1,10 +1,10 @@ INCLUDE "constants.asm" -if DEBUG -SECTION "SRAM functions", ROM0[$32A7] -else -SECTION "SRAM functions", ROM0[$326B] -endc +; if DEBUG +SECTION "home/sram.asm", ROM0 +; else +; SECTION "SRAM functions", ROM0[$326B] +; endc OpenSRAM:: ; 32a7 push af @@ -22,4 +22,4 @@ CloseSRAM:: ; 32b7 ld [MBC3LatchClock], a ld [MBC3SRamEnable], a pop af - ret + ret
\ No newline at end of file |