summaryrefslogtreecommitdiff
path: root/vram.asm
diff options
context:
space:
mode:
authorAntonioND <antonio_nd@outlook.com>2017-03-14 23:16:40 +0000
committerAntonioND <antonio_nd@outlook.com>2017-03-15 00:52:26 +0000
commite28b88f56d666484b994fc9cf28cc5d4cf50c803 (patch)
tree270ad8cc94f3702edda23c0b4f3c445bdba9698c /vram.asm
parenta722f936a9ef21348bc35b7a43efac1da23e04a3 (diff)
Fix floating sections
This is needed so that rgblink doesn't move them around after modifying it's placement algorithm. Signed-off-by: AntonioND <antonio_nd@outlook.com>
Diffstat (limited to 'vram.asm')
-rw-r--r--vram.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/vram.asm b/vram.asm
index 85d8f4369..43a9fd4a7 100644
--- a/vram.asm
+++ b/vram.asm
@@ -1,11 +1,11 @@
-SECTION "VRAM0", VRAM, BANK [0]
+SECTION "VRAM0", VRAM[$8000], BANK [0]
VTiles0:: ds $800
VTiles1:: ds $800
VTiles2:: ds $800
VBGMap0:: ds $400
VBGMap1:: ds $400
-SECTION "VRAM1", VRAM, BANK [1]
+SECTION "VRAM1", VRAM[$8000], BANK [1]
VTiles3:: ds $800
VTiles4:: ds $800
VTiles5:: ds $800