mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-03-26 07:28:23 +01:00
- Thanks to Sanqui for many Ruby/Sapphire names. https://github.com/Sanqui/romhacking/blob/master/pokemon/location-area-names
19 lines
415 B
ArmAsm
19 lines
415 B
ArmAsm
.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"
|
|
.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
|
|
.byte \width
|
|
.byte \height
|
|
.4byte gMapName_\name
|
|
.endm
|