Files
Xillicis 10bbb3a823 Include more Joypad constants in the Pokedex and new Pokedex constants (#61)
* Included more Joypad constants and new Pokedex constants

* Fixed a few mistakes.

* Added bit constants into the catchem mode.
2025-01-11 08:47:09 -06:00

24 lines
814 B
NASM

INCLUDE "vram.asm"
INCLUDE "gbhw.asm"
INCLUDE "constants/audio_constants.asm"
INCLUDE "constants/ball_types.asm"
INCLUDE "constants/bonus_stage_order_constants.asm"
INCLUDE "constants/diglett_stage_constants.asm"
INCLUDE "constants/catchem_pokemon_constants.asm"
INCLUDE "constants/evolution_type_constants.asm"
INCLUDE "constants/joy_constants.asm"
INCLUDE "constants/map_constants.asm"
INCLUDE "constants/pinball_game_constants.asm"
INCLUDE "constants/pokemon_constants.asm"
INCLUDE "constants/pokedex_constants.asm"
INCLUDE "constants/screen_constants.asm"
INCLUDE "constants/song_constants.asm"
INCLUDE "constants/sound_effect_constants.asm"
INCLUDE "constants/species_constants.asm"
INCLUDE "constants/stage_constants.asm"
INCLUDE "constants/special_collision_constants.asm"
DEF FALSE EQU 0
DEF TRUE EQU 1