mirror of
https://github.com/pret/pokepinball.git
synced 2026-09-26 05:21:13 -04:00
10bbb3a823
* Included more Joypad constants and new Pokedex constants * Fixed a few mistakes. * Added bit constants into the catchem mode.
24 lines
814 B
NASM
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
|