pokemon graphics labels

This commit is contained in:
YamaArashi
2015-11-07 15:09:26 -08:00
parent 6292ec87fc
commit 795246a93d
16 changed files with 17811 additions and 122 deletions
+16 -4
View File
@@ -5,10 +5,6 @@
.include "asm/macros/ec.s"
.include "asm/macros/map.s"
.macro include_range start, end
.incbin "base_emerald.gba", \start, \end - \start
.endm
.macro region_map_entry x, y, width, height, name
.byte \x
.byte \y
@@ -16,3 +12,19 @@
.byte \height
.4byte gMapName_\name
.endm
.macro obj_tiles address, uncompressed_size, tag
.4byte \address
.2byte \uncompressed_size
.2byte \tag
.endm
.macro obj_pal address, tag
.4byte \address
.2byte \tag
.2byte 0; padding
.endm
.macro zero_fill count
.fill \count
.endm