mirror of https://github.com/pret/pokecrystal.git
move some labels into included files
This commit is contained in:
parent
7ccb6d91e6
commit
6d7e674bd0
|
@ -1,4 +1,7 @@
|
|||
; 3fd28
|
||||
|
||||
dw $0000 ; padding
|
||||
|
||||
BattleCommandPointers: ; 3fd28
|
||||
dw BattleCommand01 ; 34084
|
||||
dw BattleCommand02 ; 343db
|
||||
dw BattleCommand03 ; 34541
|
||||
|
|
5
main.asm
5
main.asm
|
@ -38416,7 +38416,6 @@ Function39990: ; 39990
|
|||
ret
|
||||
; 39999
|
||||
|
||||
TrainerGroups: ; 0x39999
|
||||
INCLUDE "trainers/trainer_pointers.asm"
|
||||
|
||||
INCLUDE "trainers/trainers.asm"
|
||||
|
@ -38426,13 +38425,9 @@ SECTION "bankF", ROMX, BANK[$F]
|
|||
|
||||
INCLUDE "battle/core.asm"
|
||||
|
||||
dw $0000 ; padding
|
||||
|
||||
BattleCommandPointers: ; 3fd28
|
||||
INCLUDE "battle/effect_command_pointers.asm"
|
||||
|
||||
|
||||
|
||||
SECTION "bank10", ROMX, BANK[$10]
|
||||
|
||||
Function40000: ; 40000
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
; Each trainer class has its own group. See trainers.asm.
|
||||
|
||||
TrainerGroups: ; 0x39999
|
||||
dw FalknerGroup
|
||||
dw WhitneyGroup
|
||||
dw BugsyGroup
|
||||
|
|
Loading…
Reference in New Issue