mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-21 17:45:52 -05:00
Some checks failed
CI / build (push) Has been cancelled
* Started labelling dumped bank 1 functions, identified movement values * Changed all NPCs to use the new movement constants * Updated the rest of the movement constant instances, removed the old movement_constants.asm * Ready to deal the finishing blow to bank01.asm * Bank 01 is no more. Other scattered changes. * Labelled a few flags and matched a few variables with pokegold * Finished labelling bank02.asm too while I was at it
69 lines
2.2 KiB
NASM
69 lines
2.2 KiB
NASM
INCLUDE "constants/charmap.asm"
|
|
|
|
INCLUDE "macros/const.asm"
|
|
INCLUDE "macros/predef.asm"
|
|
INCLUDE "macros/data.asm"
|
|
INCLUDE "macros/code.asm"
|
|
INCLUDE "macros/gfx.asm"
|
|
INCLUDE "macros/coords.asm"
|
|
INCLUDE "macros/farcall.asm"
|
|
INCLUDE "macros/text.asm"
|
|
INCLUDE "macros/wram.asm"
|
|
INCLUDE "macros/audio.asm"
|
|
INCLUDE "macros/scripts.asm"
|
|
INCLUDE "macros/queue.asm"
|
|
INCLUDE "macros/maps.asm"
|
|
|
|
INCLUDE "macros/battle_commands.asm"
|
|
INCLUDE "macros/oam_anims.asm"
|
|
INCLUDE "macros/battle_anims.asm"
|
|
INCLUDE "macros/asserts.asm"
|
|
INCLUDE "macros/scripts/movement.asm"
|
|
|
|
INCLUDE "constants/audio_constants.asm"
|
|
INCLUDE "constants/gfx_constants.asm"
|
|
INCLUDE "constants/hardware_constants.asm"
|
|
INCLUDE "constants/text_constants.asm"
|
|
|
|
INCLUDE "constants/type_constants.asm"
|
|
INCLUDE "constants/pokedex_constants.asm"
|
|
INCLUDE "constants/pokemon_constants.asm"
|
|
INCLUDE "constants/pokemon_data_constants.asm"
|
|
INCLUDE "constants/move_constants.asm"
|
|
INCLUDE "constants/move_effect_constants.asm"
|
|
INCLUDE "constants/icon_constants.asm"
|
|
INCLUDE "constants/item_constants.asm"
|
|
INCLUDE "constants/item_data_constants.asm"
|
|
INCLUDE "constants/trainer_constants.asm"
|
|
INCLUDE "constants/trainer_data_constants.asm"
|
|
INCLUDE "constants/sprite_constants.asm"
|
|
INCLUDE "constants/sprite_anim_constants.asm"
|
|
INCLUDE "constants/battle_constants.asm"
|
|
INCLUDE "constants/palette_constants.asm"
|
|
INCLUDE "constants/music_constants.asm"
|
|
INCLUDE "constants/sfx_constants.asm"
|
|
INCLUDE "constants/cry_constants.asm"
|
|
INCLUDE "constants/landmark_constants.asm"
|
|
INCLUDE "constants/map_constants.asm"
|
|
INCLUDE "constants/map_setup_constants.asm"
|
|
INCLUDE "constants/tileset_constants.asm"
|
|
INCLUDE "constants/collision_constants.asm"
|
|
INCLUDE "constants/metatile_constants.asm"
|
|
INCLUDE "constants/map_data_constants.asm"
|
|
INCLUDE "constants/script_constants.asm"
|
|
|
|
INCLUDE "constants/serial_constants.asm"
|
|
INCLUDE "constants/input_constants.asm"
|
|
|
|
INCLUDE "constants/misc_constants.asm"
|
|
|
|
INCLUDE "constants/battle_anim_constants.asm"
|
|
INCLUDE "constants/menu_constants.asm"
|
|
INCLUDE "constants/wram_constants.asm"
|
|
INCLUDE "constants/sgb_constants.asm"
|
|
INCLUDE "constants/map_object_constants.asm"
|
|
INCLUDE "constants/start_menu_constants.asm"
|
|
|
|
INCLUDE "constants/flypoint_constants.asm"
|
|
INCLUDE "constants/spawnpoint_constants.asm"
|