From b8f4fd6390739714f702e8f09a7b800b930175cc Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 4 Feb 2013 04:27:56 -0500 Subject: Add vram sections to wram, and minor fixes --- wram.asm | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'wram.asm') diff --git a/wram.asm b/wram.asm index 54e26176e..c319e20d9 100644 --- a/wram.asm +++ b/wram.asm @@ -1,6 +1,22 @@ +SECTION "tiles0",VRAM[$8000] +VTiles0: +SECTION "tiles1",VRAM[$8800] +VTiles1: +SECTION "tiles2",VRAM[$9000] +VTiles2: +SECTION "bgmap0",VRAM[$9800] +VBGMap0: +SECTION "bgmap1",VRAM[$9C00] +VBGMap1: + + +; So far, WRAM banks 0 and 1 are included in this file. +; Any bank 2-7 labels are in constants.asm. + + SECTION "stack",BSS[$c000] ds 256 -Stack: ; c0ff +Stack: ; c100 SECTION "audio",BSS[$c100] @@ -326,6 +342,10 @@ TilePermissions: ; c2fe ; bit 0: right ds 1 +SECTION "icons",BSS[$c3b6] + +CurIcon: ; c3b6 + ds 1 SECTION "gfx",BSS[$c400] -- cgit v1.2.3