aboutsummaryrefslogtreecommitdiffstats
path: root/vram.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2022-06-17 22:54:49 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2022-06-17 22:54:49 -0400
commit61b7f6c61647d4a60145049579fff101c0c44cd9 (patch)
tree615397cfc448e31a1a1785e09d68b4a586e19735 /vram.asm
parentRename `SLP` to `SLP_MASK` (#89) (diff)
downloadpokeyellow-61b7f6c61647d4a60145049579fff101c0c44cd9.tar.gz
pokeyellow-61b7f6c61647d4a60145049579fff101c0c44cd9.tar.xz
pokeyellow-61b7f6c61647d4a60145049579fff101c0c44cd9.zip
Add a subdirectory for RAM files
Diffstat (limited to 'vram.asm')
-rw-r--r--vram.asm31
1 files changed, 0 insertions, 31 deletions
diff --git a/vram.asm b/vram.asm
deleted file mode 100644
index 21230ac0..00000000
--- a/vram.asm
+++ /dev/null
@@ -1,31 +0,0 @@
-SECTION "VRAM", VRAM
-
-UNION
-; generic
-vChars0:: ds $80 tiles
-vChars1:: ds $80 tiles
-vChars2:: ds $80 tiles
-vBGMap0:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT
-vBGMap1:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT
-
-NEXTU
-; battle/menu
-vSprites:: ds $80 tiles
-vFont:: ds $80 tiles
-vFrontPic:: ds 7 * 7 tiles
-vBackPic:: ds 7 * 7 tiles
-
-NEXTU
-; overworld
-vNPCSprites:: ds $80 tiles
-vNPCSprites2:: ds $80 tiles
-vTileset:: ds $80 tiles
-
-NEXTU
-; title
- ds $80 tiles
-vTitleLogo:: ds $80 tiles
- ds 7 * 7 tiles
-vTitleLogo2:: ds 30 tiles
-
-ENDU