summaryrefslogtreecommitdiff
path: root/home/sram.asm
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2014-02-04 07:25:51 -0800
committerBryan Bishop <kanzure@gmail.com>2014-02-04 07:25:51 -0800
commit1202e68d2f695d4b91d184bd43139dbe10cb8131 (patch)
tree504954f57273cae14de4618a82770c4e4e2e5dd9 /home/sram.asm
parent80465fc6e6f1455f4ae65b5c0db54b9953ca0cc5 (diff)
parent7c02c2bb31317c31446a5907fe68f26dabb4858f (diff)
Merge pull request #228 from yenatch/nuke-globals
Nuke globals.asm
Diffstat (limited to 'home/sram.asm')
-rw-r--r--home/sram.asm6
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