mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
16 lines
302 B
PHP
16 lines
302 B
PHP
.macro new_map_group
|
|
.set cur_map_group, cur_map_group + 1
|
|
.set cur_map_num, 0
|
|
.endm
|
|
|
|
.macro map_group map_name
|
|
.set GROUP_\map_name, cur_map_group
|
|
.set MAP_\map_name, cur_map_num
|
|
.set cur_map_num, cur_map_num + 1
|
|
.endm
|
|
|
|
.macro map map_name
|
|
.byte GROUP_\map_name
|
|
.byte MAP_\map_name
|
|
.endm
|