mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-17 15:26:02 -05:00
Addresses of sections will now be added to the linkerscript via `org`, and the section name will be the path/to/file. If there is more than one section in the file, then add a @SectionName after the path/to/file to describe the section.
50 lines
1.7 KiB
NASM
50 lines
1.7 KiB
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "data/maps/landmarks.asm", ROMX
|
|
|
|
LandmarkNames::
|
|
db "サイレント@" ; SILENT
|
|
db "オールド@" ; OLD
|
|
db "ウエスト@" ; WEST
|
|
db "ハイテク@" ; HIGH_TECH
|
|
db "フォント@" ; FOUNT
|
|
db "バードン@" ; BIRDON
|
|
db "ニュータイプ@" ; NEW_TYPE
|
|
db "シュガー@" ; SUGAR
|
|
db "ブルーフォレスト@" ; BLUE_FOREST
|
|
db "スタンド@" ; STAND
|
|
db "カントー@" ; KANTO
|
|
db "プりンス@" ; PRINCE
|
|
db "フジヤマ@" ; MT_FUJI
|
|
db "サウス@" ; SOUTH
|
|
db "ノース@" ; NORTH
|
|
db "15ばんどうろ@" ; ROUTE_15
|
|
db "18ばんどうろ@" ; ROUTE_18
|
|
db "はつでんしょ1@" ; POWER_PLANT_1
|
|
db "はつでんしょ2@" ; POWER_PLANT_2
|
|
db "はつでんしょ3@" ; POWER_PLANT_3
|
|
db "はつでんしょ4@" ; POWER_PLANT_4
|
|
db "いせき 1@" ; RUINS_1
|
|
db "いせき 2@" ; RUINS_2
|
|
db "はいこう1@" ; MINES_1
|
|
db "はいこう2@" ; MINES_2
|
|
db "はいこう3@" ; MINES_3
|
|
db "はいこう4@" ; MINES_4
|
|
db "はいこう5@" ; MINES_5
|
|
db "はいこう6@" ; MINES_6
|
|
db "はいこう7@" ; MINES_7
|
|
db "アジト 1@" ; HIDEOUT_1
|
|
db "アジト 2@" ; HIDEOUT_2
|
|
db "アジト 3@" ; HIDEOUT_3
|
|
db "ヤドンの いど1@" ; SLOWPOKE_WELL_1
|
|
db "ヤドンの いど2@" ; SLOWPOKE_WELL_2
|
|
db "#りーぐ1@" ; POKEMON_LEAGUE_1
|
|
db "#りーぐ1@" ; POKEMON_LEAGUE_1_2
|
|
db "#りーぐ2@" ; POKEMON_LEAGUE_2
|
|
db "#りーぐ3@" ; POKEMON_LEAGUE_3
|
|
db "#りーぐ4@" ; POKEMON_LEAGUE_4
|
|
db "#りーぐ5@" ; POKEMON_LEAGUE_5
|
|
db "#りーぐ6@" ; POKEMON_LEAGUE_6
|
|
db "#りーぐ7@" ; POKEMON_LEAGUE_7
|
|
db "#りーぐ7@" ; POKEMON_LEAGUE_7_2
|
|
db "しずかなおか@" ; SILENT_HILL |