diff options
author | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
commit | cf2acc100193f599b4521a961c9bff6a78be8217 (patch) | |
tree | 8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/sram.asm | |
parent | adb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff) |
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/sram.asm')
-rw-r--r-- | home/sram.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/sram.asm b/home/sram.asm index 3c42e7618..8f60f57f3 100644 --- a/home/sram.asm +++ b/home/sram.asm @@ -1,4 +1,4 @@ -GetSRAMBank: ; 2fcb +GetSRAMBank:: ; 2fcb ; load sram bank a ; if invalid bank, sram is disabled cp NUM_SRAM_BANKS @@ -6,7 +6,7 @@ GetSRAMBank: ; 2fcb jr CloseSRAM ; 2fd1 -OpenSRAM: ; 2fd1 +OpenSRAM:: ; 2fd1 ; switch to sram bank a push af ; latch clock data @@ -21,7 +21,7 @@ OpenSRAM: ; 2fd1 ret ; 2fe1 -CloseSRAM: ; 2fe1 +CloseSRAM:: ; 2fe1 push af ld a, SRAM_DISABLE ; reset clock latch for next time |