2015-10-19 16:42:57 +00:00
|
|
|
.include "asm/macros/function.s"
|
|
|
|
.include "asm/macros/event.s"
|
|
|
|
.include "asm/macros/window.s"
|
|
|
|
.include "asm/macros/pokemon_data.s"
|
|
|
|
.include "asm/macros/ec.s"
|
2015-10-26 05:56:06 +00:00
|
|
|
.include "asm/macros/map.s"
|
2015-10-19 16:42:57 +00:00
|
|
|
|
2015-10-08 07:21:20 +00:00
|
|
|
.macro include_range start, end
|
|
|
|
.incbin "base_emerald.gba", \start, \end - \start
|
|
|
|
.endm
|
|
|
|
|
2015-10-18 12:11:30 +00:00
|
|
|
.macro region_map_entry x, y, width, height, name
|
|
|
|
.byte \x
|
|
|
|
.byte \y
|
|
|
|
.byte \width
|
|
|
|
.byte \height
|
|
|
|
.4byte gMapName_\name
|
|
|
|
.endm
|