pokemon graphics labels
This commit is contained in:
+16
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user