mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-12-22 02:21:36 +13:00
Remove the last address comments
except for wram.asm and sram.asm also delete unused yellow file
This commit is contained in:
parent
48e0125bd6
commit
a51037eeee
12
audio.asm
12
audio.asm
|
|
@ -362,7 +362,7 @@ INCLUDE "audio/sfx/cry22_3.asm"
|
||||||
|
|
||||||
SECTION "Audio Engine 1", ROMX, BANK[AUDIO_1]
|
SECTION "Audio Engine 1", ROMX, BANK[AUDIO_1]
|
||||||
|
|
||||||
PlayBattleMusic:: ; 0x90c6
|
PlayBattleMusic::
|
||||||
xor a
|
xor a
|
||||||
ld [wAudioFadeOutControl], a
|
ld [wAudioFadeOutControl], a
|
||||||
ld [wLowHealthAlarm], a
|
ld [wLowHealthAlarm], a
|
||||||
|
|
@ -402,7 +402,7 @@ INCLUDE "audio/engine_1.asm"
|
||||||
|
|
||||||
|
|
||||||
; an alternate start for MeetRival which has a different first measure
|
; an alternate start for MeetRival which has a different first measure
|
||||||
Music_RivalAlternateStart:: ; 0x9b47
|
Music_RivalAlternateStart::
|
||||||
ld c, BANK(Music_MeetRival)
|
ld c, BANK(Music_MeetRival)
|
||||||
ld a, MUSIC_MEET_RIVAL
|
ld a, MUSIC_MEET_RIVAL
|
||||||
call PlayMusic
|
call PlayMusic
|
||||||
|
|
@ -413,7 +413,7 @@ Music_RivalAlternateStart:: ; 0x9b47
|
||||||
call Audio1_OverwriteChannelPointer
|
call Audio1_OverwriteChannelPointer
|
||||||
ld de, Music_MeetRival_branch_b2b5
|
ld de, Music_MeetRival_branch_b2b5
|
||||||
|
|
||||||
Audio1_OverwriteChannelPointer: ; 0x9b60
|
Audio1_OverwriteChannelPointer:
|
||||||
ld a, e
|
ld a, e
|
||||||
ld [hli], a
|
ld [hli], a
|
||||||
ld a, d
|
ld a, d
|
||||||
|
|
@ -421,7 +421,7 @@ Audio1_OverwriteChannelPointer: ; 0x9b60
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; an alternate tempo for MeetRival which is slightly slower
|
; an alternate tempo for MeetRival which is slightly slower
|
||||||
Music_RivalAlternateTempo:: ; 0x9b65
|
Music_RivalAlternateTempo::
|
||||||
ld c, BANK(Music_MeetRival)
|
ld c, BANK(Music_MeetRival)
|
||||||
ld a, MUSIC_MEET_RIVAL
|
ld a, MUSIC_MEET_RIVAL
|
||||||
call PlayMusic
|
call PlayMusic
|
||||||
|
|
@ -430,14 +430,14 @@ Music_RivalAlternateTempo:: ; 0x9b65
|
||||||
jp Audio1_OverwriteChannelPointer
|
jp Audio1_OverwriteChannelPointer
|
||||||
|
|
||||||
; applies both the alternate start and alternate tempo
|
; applies both the alternate start and alternate tempo
|
||||||
Music_RivalAlternateStartAndTempo:: ; 0x9b75
|
Music_RivalAlternateStartAndTempo::
|
||||||
call Music_RivalAlternateStart
|
call Music_RivalAlternateStart
|
||||||
ld hl, wChannelCommandPointers
|
ld hl, wChannelCommandPointers
|
||||||
ld de, Music_MeetRival_branch_b19b
|
ld de, Music_MeetRival_branch_b19b
|
||||||
jp Audio1_OverwriteChannelPointer
|
jp Audio1_OverwriteChannelPointer
|
||||||
|
|
||||||
; an alternate tempo for Cities1 which is used for the Hall of Fame room
|
; an alternate tempo for Cities1 which is used for the Hall of Fame room
|
||||||
Music_Cities1AlternateTempo:: ; 0x9b81
|
Music_Cities1AlternateTempo::
|
||||||
ld a, 10
|
ld a, 10
|
||||||
ld [wAudioFadeOutCounterReloadValue], a
|
ld [wAudioFadeOutCounterReloadValue], a
|
||||||
ld [wAudioFadeOutCounter], a
|
ld [wAudioFadeOutCounter], a
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
; The first of three duplicated sound engines.
|
; The first of three duplicated sound engines.
|
||||||
|
|
||||||
Audio1_UpdateMusic:: ; 0x9103
|
Audio1_UpdateMusic::
|
||||||
ld c, CH0
|
ld c, CH0
|
||||||
.loop
|
.loop
|
||||||
ld b, 0
|
ld b, 0
|
||||||
|
|
@ -36,7 +36,7 @@ Audio1_UpdateMusic:: ; 0x9103
|
||||||
|
|
||||||
; this routine checks flags for music effects currently applied
|
; this routine checks flags for music effects currently applied
|
||||||
; to the channel and calls certain functions based on flags.
|
; to the channel and calls certain functions based on flags.
|
||||||
Audio1_ApplyMusicAffects: ; 0x9138
|
Audio1_ApplyMusicAffects:
|
||||||
ld b, $0
|
ld b, $0
|
||||||
ld hl, wChannelNoteDelayCounters ; delay until next note
|
ld hl, wChannelNoteDelayCounters ; delay until next note
|
||||||
add hl, bc
|
add hl, bc
|
||||||
|
|
@ -144,7 +144,7 @@ Audio1_ApplyMusicAffects: ; 0x9138
|
||||||
; this routine executes all music commands that take up no time,
|
; this routine executes all music commands that take up no time,
|
||||||
; like tempo changes, duty changes etc. and doesn't return
|
; like tempo changes, duty changes etc. and doesn't return
|
||||||
; until the first note is reached
|
; until the first note is reached
|
||||||
Audio1_PlayNextNote: ; 0x91d0
|
Audio1_PlayNextNote:
|
||||||
; reload the vibrato delay counter
|
; reload the vibrato delay counter
|
||||||
ld hl, wChannelVibratoDelayCounterReloadValues
|
ld hl, wChannelVibratoDelayCounterReloadValues
|
||||||
add hl, bc
|
add hl, bc
|
||||||
|
|
@ -160,7 +160,7 @@ Audio1_PlayNextNote: ; 0x91d0
|
||||||
call Audio1_endchannel
|
call Audio1_endchannel
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_endchannel: ; 0x91e6
|
Audio1_endchannel:
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
ld d, a
|
ld d, a
|
||||||
cp $ff ; is this command an endchannel?
|
cp $ff ; is this command an endchannel?
|
||||||
|
|
@ -250,7 +250,7 @@ Audio1_endchannel: ; 0x91e6
|
||||||
ld [hl], b
|
ld [hl], b
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_callchannel: ; 0x9274
|
Audio1_callchannel:
|
||||||
cp $fd ; is this command a callchannel?
|
cp $fd ; is this command a callchannel?
|
||||||
jp nz, Audio1_loopchannel ; no
|
jp nz, Audio1_loopchannel ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -287,7 +287,7 @@ Audio1_callchannel: ; 0x9274
|
||||||
set BIT_CHANNEL_CALL, [hl] ; set the call flag
|
set BIT_CHANNEL_CALL, [hl] ; set the call flag
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_loopchannel: ; 0x92a9
|
Audio1_loopchannel:
|
||||||
cp $fe ; is this command a loopchannel?
|
cp $fe ; is this command a loopchannel?
|
||||||
jp nz, Audio1_notetype ; no
|
jp nz, Audio1_notetype ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -325,7 +325,7 @@ Audio1_loopchannel: ; 0x92a9
|
||||||
ld [hl], b
|
ld [hl], b
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_notetype: ; 0x92e4
|
Audio1_notetype:
|
||||||
and $f0
|
and $f0
|
||||||
cp $d0 ; is this command a notetype?
|
cp $d0 ; is this command a notetype?
|
||||||
jp nz, Audio1_toggleperfectpitch ; no
|
jp nz, Audio1_toggleperfectpitch ; no
|
||||||
|
|
@ -369,7 +369,7 @@ Audio1_notetype: ; 0x92e4
|
||||||
.noiseChannel
|
.noiseChannel
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_toggleperfectpitch: ; 0x9323
|
Audio1_toggleperfectpitch:
|
||||||
ld a, d
|
ld a, d
|
||||||
cp $e8 ; is this command a toggleperfectpitch?
|
cp $e8 ; is this command a toggleperfectpitch?
|
||||||
jr nz, Audio1_vibrato ; no
|
jr nz, Audio1_vibrato ; no
|
||||||
|
|
@ -381,7 +381,7 @@ Audio1_toggleperfectpitch: ; 0x9323
|
||||||
ld [hl], a ; flip bit 0 of wChannelFlags1
|
ld [hl], a ; flip bit 0 of wChannelFlags1
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_vibrato: ; 0x9335
|
Audio1_vibrato:
|
||||||
cp $ea ; is this command a vibrato?
|
cp $ea ; is this command a vibrato?
|
||||||
jr nz, Audio1_pitchbend ; no
|
jr nz, Audio1_pitchbend ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -429,7 +429,7 @@ Audio1_vibrato: ; 0x9335
|
||||||
|
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_pitchbend: ; 0x936d
|
Audio1_pitchbend:
|
||||||
cp $eb ; is this command a pitchbend?
|
cp $eb ; is this command a pitchbend?
|
||||||
jr nz, Audio1_duty ; no
|
jr nz, Audio1_duty ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -460,7 +460,7 @@ Audio1_pitchbend: ; 0x936d
|
||||||
ld d, a
|
ld d, a
|
||||||
jp Audio1_notelength
|
jp Audio1_notelength
|
||||||
|
|
||||||
Audio1_duty: ; 0x93a5
|
Audio1_duty:
|
||||||
cp $ec ; is this command a duty?
|
cp $ec ; is this command a duty?
|
||||||
jr nz, Audio1_tempo ; no
|
jr nz, Audio1_tempo ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -473,7 +473,7 @@ Audio1_duty: ; 0x93a5
|
||||||
ld [hl], a ; store duty
|
ld [hl], a ; store duty
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_tempo: ; 0x93ba
|
Audio1_tempo:
|
||||||
cp $ed ; is this command a tempo?
|
cp $ed ; is this command a tempo?
|
||||||
jr nz, Audio1_stereopanning ; no
|
jr nz, Audio1_stereopanning ; no
|
||||||
ld a, c
|
ld a, c
|
||||||
|
|
@ -502,7 +502,7 @@ Audio1_tempo: ; 0x93ba
|
||||||
.musicChannelDone
|
.musicChannelDone
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_stereopanning: ; 0x93fa
|
Audio1_stereopanning:
|
||||||
cp $ee ; is this command a stereopanning?
|
cp $ee ; is this command a stereopanning?
|
||||||
jr nz, Audio1_unknownmusic0xef ; no
|
jr nz, Audio1_unknownmusic0xef ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -510,7 +510,7 @@ Audio1_stereopanning: ; 0x93fa
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
; this appears to never be used
|
; this appears to never be used
|
||||||
Audio1_unknownmusic0xef: ; 0x9407
|
Audio1_unknownmusic0xef:
|
||||||
cp $ef ; is this command an unknownmusic0xef?
|
cp $ef ; is this command an unknownmusic0xef?
|
||||||
jr nz, Audio1_dutycycle ; no
|
jr nz, Audio1_dutycycle ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -527,7 +527,7 @@ Audio1_unknownmusic0xef: ; 0x9407
|
||||||
.skip
|
.skip
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_dutycycle: ; 0x9426
|
Audio1_dutycycle:
|
||||||
cp $fc ; is this command a dutycycle?
|
cp $fc ; is this command a dutycycle?
|
||||||
jr nz, Audio1_volume ; no
|
jr nz, Audio1_volume ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
|
|
@ -544,14 +544,14 @@ Audio1_dutycycle: ; 0x9426
|
||||||
set BIT_ROTATE_DUTY, [hl]
|
set BIT_ROTATE_DUTY, [hl]
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_volume: ; 0x9444
|
Audio1_volume:
|
||||||
cp $f0 ; is this command a volume?
|
cp $f0 ; is this command a volume?
|
||||||
jr nz, Audio1_executemusic ; no
|
jr nz, Audio1_executemusic ; no
|
||||||
call Audio1_GetNextMusicByte
|
call Audio1_GetNextMusicByte
|
||||||
ld [rNR50], a ; store volume
|
ld [rNR50], a ; store volume
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_executemusic: ; 0x9450
|
Audio1_executemusic:
|
||||||
cp $f8 ; is this command an executemusic?
|
cp $f8 ; is this command an executemusic?
|
||||||
jr nz, Audio1_octave ; no
|
jr nz, Audio1_octave ; no
|
||||||
ld b, $0
|
ld b, $0
|
||||||
|
|
@ -560,7 +560,7 @@ Audio1_executemusic: ; 0x9450
|
||||||
set BIT_EXECUTE_MUSIC, [hl]
|
set BIT_EXECUTE_MUSIC, [hl]
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_octave: ; 0x945f
|
Audio1_octave:
|
||||||
and $f0
|
and $f0
|
||||||
cp $e0 ; is this command an octave?
|
cp $e0 ; is this command an octave?
|
||||||
jr nz, Audio1_unknownsfx0x20 ; no
|
jr nz, Audio1_unknownsfx0x20 ; no
|
||||||
|
|
@ -572,7 +572,7 @@ Audio1_octave: ; 0x945f
|
||||||
ld [hl], a ; store low nibble as octave
|
ld [hl], a ; store low nibble as octave
|
||||||
jp Audio1_endchannel
|
jp Audio1_endchannel
|
||||||
|
|
||||||
Audio1_unknownsfx0x20: ; 0x9472
|
Audio1_unknownsfx0x20:
|
||||||
cp $20 ; is this command an unknownsfx0x20?
|
cp $20 ; is this command an unknownsfx0x20?
|
||||||
jr nz, Audio1_unknownsfx0x10
|
jr nz, Audio1_unknownsfx0x10
|
||||||
ld a, c
|
ld a, c
|
||||||
|
|
@ -676,7 +676,7 @@ asm_94fd
|
||||||
pop bc
|
pop bc
|
||||||
pop de
|
pop de
|
||||||
|
|
||||||
Audio1_notelength: ; 0x950a
|
Audio1_notelength:
|
||||||
ld a, d
|
ld a, d
|
||||||
push af
|
push af
|
||||||
and $f
|
and $f
|
||||||
|
|
@ -734,7 +734,7 @@ Audio1_notelength: ; 0x950a
|
||||||
pop hl
|
pop hl
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_notepitch: ; 0x9568
|
Audio1_notepitch:
|
||||||
pop af
|
pop af
|
||||||
and $f0
|
and $f0
|
||||||
cp $c0 ; compare to rest
|
cp $c0 ; compare to rest
|
||||||
|
|
@ -829,7 +829,7 @@ Audio1_notepitch: ; 0x9568
|
||||||
call Audio1_ApplyWavePatternAndFrequency
|
call Audio1_ApplyWavePatternAndFrequency
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_EnableChannelOutput: ; 0x95f8
|
Audio1_EnableChannelOutput:
|
||||||
ld b, 0
|
ld b, 0
|
||||||
ld hl, Audio1_HWChannelEnableMasks
|
ld hl, Audio1_HWChannelEnableMasks
|
||||||
add hl, bc
|
add hl, bc
|
||||||
|
|
@ -866,7 +866,7 @@ Audio1_EnableChannelOutput: ; 0x95f8
|
||||||
ld [rNR51], a
|
ld [rNR51], a
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_ApplyDutyAndSoundLength: ; 0x9629
|
Audio1_ApplyDutyAndSoundLength:
|
||||||
ld b, 0
|
ld b, 0
|
||||||
ld hl, wChannelNoteDelayCounters ; use the note delay as sound length
|
ld hl, wChannelNoteDelayCounters ; use the note delay as sound length
|
||||||
add hl, bc
|
add hl, bc
|
||||||
|
|
@ -891,7 +891,7 @@ Audio1_ApplyDutyAndSoundLength: ; 0x9629
|
||||||
ld [hl], d
|
ld [hl], d
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_ApplyWavePatternAndFrequency: ; 0x964b
|
Audio1_ApplyWavePatternAndFrequency:
|
||||||
ld a, c
|
ld a, c
|
||||||
cp CH2
|
cp CH2
|
||||||
jr z, .channel3
|
jr z, .channel3
|
||||||
|
|
@ -942,7 +942,7 @@ Audio1_ApplyWavePatternAndFrequency: ; 0x964b
|
||||||
call Audio1_ApplyFrequencyModifier
|
call Audio1_ApplyFrequencyModifier
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_SetSfxTempo: ; 0x9693
|
Audio1_SetSfxTempo:
|
||||||
call Audio1_IsCry
|
call Audio1_IsCry
|
||||||
jr nc, .notCry
|
jr nc, .notCry
|
||||||
ld d, 0
|
ld d, 0
|
||||||
|
|
@ -963,7 +963,7 @@ Audio1_SetSfxTempo: ; 0x9693
|
||||||
.done
|
.done
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_ApplyFrequencyModifier: ; 0x96b5
|
Audio1_ApplyFrequencyModifier:
|
||||||
call Audio1_IsCry
|
call Audio1_IsCry
|
||||||
jr nc, .done
|
jr nc, .done
|
||||||
; if playing a cry, add the cry's frequency modifier
|
; if playing a cry, add the cry's frequency modifier
|
||||||
|
|
@ -980,7 +980,7 @@ Audio1_ApplyFrequencyModifier: ; 0x96b5
|
||||||
.done
|
.done
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_GoBackOneCommandIfCry: ; 0x96c7
|
Audio1_GoBackOneCommandIfCry:
|
||||||
call Audio1_IsCry
|
call Audio1_IsCry
|
||||||
jr nc, .done
|
jr nc, .done
|
||||||
ld hl, wChannelCommandPointers
|
ld hl, wChannelCommandPointers
|
||||||
|
|
@ -1003,7 +1003,7 @@ Audio1_GoBackOneCommandIfCry: ; 0x96c7
|
||||||
ccf
|
ccf
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_IsCry: ; 0x96e5
|
Audio1_IsCry:
|
||||||
; Returns whether the currently playing audio is a cry in carry.
|
; Returns whether the currently playing audio is a cry in carry.
|
||||||
ld a, [wChannelSoundIDs + CH4]
|
ld a, [wChannelSoundIDs + CH4]
|
||||||
cp CRY_SFX_START
|
cp CRY_SFX_START
|
||||||
|
|
@ -1021,7 +1021,7 @@ Audio1_IsCry: ; 0x96e5
|
||||||
scf
|
scf
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_ApplyPitchBend: ; 0x96f9
|
Audio1_ApplyPitchBend:
|
||||||
ld hl, wChannelFlags1
|
ld hl, wChannelFlags1
|
||||||
add hl, bc
|
add hl, bc
|
||||||
bit BIT_PITCH_BEND_DECREASING, [hl]
|
bit BIT_PITCH_BEND_DECREASING, [hl]
|
||||||
|
|
@ -1125,7 +1125,7 @@ Audio1_ApplyPitchBend: ; 0x96f9
|
||||||
res BIT_PITCH_BEND_DECREASING, [hl]
|
res BIT_PITCH_BEND_DECREASING, [hl]
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_InitPitchBendVars: ; 0x978f
|
Audio1_InitPitchBendVars:
|
||||||
ld hl, wChannelPitchBendCurrentFrequencyHighBytes
|
ld hl, wChannelPitchBendCurrentFrequencyHighBytes
|
||||||
add hl, bc
|
add hl, bc
|
||||||
ld [hl], d
|
ld [hl], d
|
||||||
|
|
@ -1224,7 +1224,7 @@ Audio1_InitPitchBendVars: ; 0x978f
|
||||||
ld [hl], a ; store remainder - dividend
|
ld [hl], a ; store remainder - dividend
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_ApplyDutyCycle: ; 0x980d
|
Audio1_ApplyDutyCycle:
|
||||||
ld b, 0
|
ld b, 0
|
||||||
ld hl, wChannelDutyCycles
|
ld hl, wChannelDutyCycles
|
||||||
add hl, bc
|
add hl, bc
|
||||||
|
|
@ -1242,7 +1242,7 @@ Audio1_ApplyDutyCycle: ; 0x980d
|
||||||
ld [hl], a
|
ld [hl], a
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_GetNextMusicByte: ; 0x9825
|
Audio1_GetNextMusicByte:
|
||||||
ld d, 0
|
ld d, 0
|
||||||
ld a, c
|
ld a, c
|
||||||
add a
|
add a
|
||||||
|
|
@ -1260,7 +1260,7 @@ Audio1_GetNextMusicByte: ; 0x9825
|
||||||
ld [hl], d
|
ld [hl], d
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_GetRegisterPointer: ; 0x9838
|
Audio1_GetRegisterPointer:
|
||||||
; hl = address of hardware sound register b for software channel c
|
; hl = address of hardware sound register b for software channel c
|
||||||
ld a, c
|
ld a, c
|
||||||
ld hl, Audio1_HWChannelBaseAddresses
|
ld hl, Audio1_HWChannelBaseAddresses
|
||||||
|
|
@ -1275,7 +1275,7 @@ Audio1_GetRegisterPointer: ; 0x9838
|
||||||
ld h, $ff
|
ld h, $ff
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_MultiplyAdd: ; 0x9847
|
Audio1_MultiplyAdd:
|
||||||
; hl = l + (a * de)
|
; hl = l + (a * de)
|
||||||
ld h, 0
|
ld h, 0
|
||||||
.loop
|
.loop
|
||||||
|
|
@ -1291,7 +1291,7 @@ Audio1_MultiplyAdd: ; 0x9847
|
||||||
.done
|
.done
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_CalculateFrequency: ; 0x9858
|
Audio1_CalculateFrequency:
|
||||||
; return the frequency for note a, octave b in de
|
; return the frequency for note a, octave b in de
|
||||||
ld h, 0
|
ld h, 0
|
||||||
ld l, a
|
ld l, a
|
||||||
|
|
@ -1317,7 +1317,7 @@ Audio1_CalculateFrequency: ; 0x9858
|
||||||
ld d, a
|
ld d, a
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_PlaySound:: ; 0x9876
|
Audio1_PlaySound::
|
||||||
ld [wSoundID], a
|
ld [wSoundID], a
|
||||||
cp $ff
|
cp $ff
|
||||||
jp z, .stopAllAudio
|
jp z, .stopAllAudio
|
||||||
|
|
@ -1695,23 +1695,23 @@ Audio1_PlaySound:: ; 0x9876
|
||||||
.done
|
.done
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Audio1_CryEndchannel: ; 0x9b16
|
Audio1_CryEndchannel:
|
||||||
endchannel
|
endchannel
|
||||||
|
|
||||||
Audio1_HWChannelBaseAddresses: ; 0x9b17
|
Audio1_HWChannelBaseAddresses:
|
||||||
; the low bytes of each HW channel's base address
|
; the low bytes of each HW channel's base address
|
||||||
db HW_CH1_BASE, HW_CH2_BASE, HW_CH3_BASE, HW_CH4_BASE ; channels 0-3
|
db HW_CH1_BASE, HW_CH2_BASE, HW_CH3_BASE, HW_CH4_BASE ; channels 0-3
|
||||||
db HW_CH1_BASE, HW_CH2_BASE, HW_CH3_BASE, HW_CH4_BASE ; channels 4-7
|
db HW_CH1_BASE, HW_CH2_BASE, HW_CH3_BASE, HW_CH4_BASE ; channels 4-7
|
||||||
|
|
||||||
Audio1_HWChannelDisableMasks: ; 0x9b1f
|
Audio1_HWChannelDisableMasks:
|
||||||
db HW_CH1_DISABLE_MASK, HW_CH2_DISABLE_MASK, HW_CH3_DISABLE_MASK, HW_CH4_DISABLE_MASK ; channels 0-3
|
db HW_CH1_DISABLE_MASK, HW_CH2_DISABLE_MASK, HW_CH3_DISABLE_MASK, HW_CH4_DISABLE_MASK ; channels 0-3
|
||||||
db HW_CH1_DISABLE_MASK, HW_CH2_DISABLE_MASK, HW_CH3_DISABLE_MASK, HW_CH4_DISABLE_MASK ; channels 4-7
|
db HW_CH1_DISABLE_MASK, HW_CH2_DISABLE_MASK, HW_CH3_DISABLE_MASK, HW_CH4_DISABLE_MASK ; channels 4-7
|
||||||
|
|
||||||
Audio1_HWChannelEnableMasks: ; 0x9b27
|
Audio1_HWChannelEnableMasks:
|
||||||
db HW_CH1_ENABLE_MASK, HW_CH2_ENABLE_MASK, HW_CH3_ENABLE_MASK, HW_CH4_ENABLE_MASK ; channels 0-3
|
db HW_CH1_ENABLE_MASK, HW_CH2_ENABLE_MASK, HW_CH3_ENABLE_MASK, HW_CH4_ENABLE_MASK ; channels 0-3
|
||||||
db HW_CH1_ENABLE_MASK, HW_CH2_ENABLE_MASK, HW_CH3_ENABLE_MASK, HW_CH4_ENABLE_MASK ; channels 4-7
|
db HW_CH1_ENABLE_MASK, HW_CH2_ENABLE_MASK, HW_CH3_ENABLE_MASK, HW_CH4_ENABLE_MASK ; channels 4-7
|
||||||
|
|
||||||
Audio1_Pitches: ; 0x9b2f
|
Audio1_Pitches:
|
||||||
dw $F82C ; C_
|
dw $F82C ; C_
|
||||||
dw $F89D ; C#
|
dw $F89D ; C#
|
||||||
dw $F907 ; D_
|
dw $F907 ; D_
|
||||||
|
|
|
||||||
|
|
@ -566,7 +566,7 @@ Audio2_octave:
|
||||||
ld [hl], a ; store low nibble as octave
|
ld [hl], a ; store low nibble as octave
|
||||||
jp Audio2_endchannel
|
jp Audio2_endchannel
|
||||||
|
|
||||||
Audio2_unknownsfx0x20: ; 21bf3
|
Audio2_unknownsfx0x20:
|
||||||
cp $20 ; is this command an unknownsfx0x20?
|
cp $20 ; is this command an unknownsfx0x20?
|
||||||
jr nz, Audio2_unknownsfx0x10 ; no
|
jr nz, Audio2_unknownsfx0x10 ; no
|
||||||
ld a, c
|
ld a, c
|
||||||
|
|
|
||||||
|
|
@ -53,5 +53,3 @@ Music_DefeatedGymLeader::
|
||||||
dw Music_DefeatedGymLeader_Ch2
|
dw Music_DefeatedGymLeader_Ch2
|
||||||
db CH2
|
db CH2
|
||||||
dw Music_DefeatedGymLeader_Ch3
|
dw Music_DefeatedGymLeader_Ch3
|
||||||
|
|
||||||
; 202fd
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Agatha_h: ; 0x76421 to 0x7642d (12 bytes) (id=247)
|
Agatha_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db AGATHAS_ROOM_HEIGHT, AGATHAS_ROOM_WIDTH ; dimensions (y, x)
|
db AGATHAS_ROOM_HEIGHT, AGATHAS_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw AgathaBlocks, AgathaTextPointers, AgathaScript ; blocks, texts, scripts
|
dw AgathaBlocks, AgathaTextPointers, AgathaScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
BikeShop_h: ; 0x1d730 to 0x1d73c (12 bytes) (bank=7) (id=66)
|
BikeShop_h:
|
||||||
db CLUB ; tileset
|
db CLUB ; tileset
|
||||||
db BIKE_SHOP_HEIGHT, BIKE_SHOP_WIDTH ; dimensions (y, x)
|
db BIKE_SHOP_HEIGHT, BIKE_SHOP_WIDTH ; dimensions (y, x)
|
||||||
dw BikeShopBlocks, BikeShopTextPointers, BikeShopScript ; blocks, texts, scripts
|
dw BikeShopBlocks, BikeShopTextPointers, BikeShopScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
BillsHouse_h: ; 0x1e75e to 0x1e76a (12 bytes) (bank=7) (id=88)
|
BillsHouse_h:
|
||||||
db INTERIOR ; tileset
|
db INTERIOR ; tileset
|
||||||
db BILLS_HOUSE_HEIGHT, BILLS_HOUSE_WIDTH ; dimensions (y, x)
|
db BILLS_HOUSE_HEIGHT, BILLS_HOUSE_WIDTH ; dimensions (y, x)
|
||||||
dw BillsHouseBlocks, BillsHouseTextPointers, BillsHouseScript ; blocks, texts, scripts
|
dw BillsHouseBlocks, BillsHouseTextPointers, BillsHouseScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
BluesHouse_h: ; 0x19b2f id=39
|
BluesHouse_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db BLUES_HOUSE_HEIGHT, BLUES_HOUSE_WIDTH ; dimensions
|
db BLUES_HOUSE_HEIGHT, BLUES_HOUSE_WIDTH ; dimensions
|
||||||
dw BluesHouseBlocks, BluesHouseTextPointers, BluesHouseScript
|
dw BluesHouseBlocks, BluesHouseTextPointers, BluesHouseScript
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Bruno_h: ; 0x762ca to 0x762d6 (12 bytes) (id=246)
|
Bruno_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db BRUNOS_ROOM_HEIGHT, BRUNOS_ROOM_WIDTH ; dimensions (y, x)
|
db BRUNOS_ROOM_HEIGHT, BRUNOS_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw BrunoBlocks, BrunoTextPointers, BrunoScript ; blocks, texts, scripts
|
dw BrunoBlocks, BrunoTextPointers, BrunoScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonDiner_h: ; 0x49145 to 0x49151 (12 bytes) (bank=12) (id=138)
|
CeladonDiner_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_DINER_HEIGHT, CELADON_DINER_WIDTH ; dimensions (y, x)
|
db CELADON_DINER_HEIGHT, CELADON_DINER_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonDinerBlocks, CeladonDinerTextPointers, CeladonDinerScript ; blocks, texts, scripts
|
dw CeladonDinerBlocks, CeladonDinerTextPointers, CeladonDinerScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonGameCorner_h: ; 0x48bb1 to 0x48bbd (12 bytes) (bank=12) (id=135)
|
CeladonGameCorner_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db GAME_CORNER_HEIGHT, GAME_CORNER_WIDTH ; dimensions (y, x)
|
db GAME_CORNER_HEIGHT, GAME_CORNER_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonGameCornerBlocks, CeladonGameCornerTextPointers, CeladonGameCornerScript ; blocks, texts, scripts
|
dw CeladonGameCornerBlocks, CeladonGameCornerTextPointers, CeladonGameCornerScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonGym_h: ; 0x488fe to 0x4890a (12 bytes) (bank=12) (id=134)
|
CeladonGym_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db CELADON_GYM_HEIGHT, CELADON_GYM_WIDTH ; dimensions (y, x)
|
db CELADON_GYM_HEIGHT, CELADON_GYM_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonGymBlocks, CeladonGymTextPointers, CeladonGymScript ; blocks, texts, scripts
|
dw CeladonGymBlocks, CeladonGymTextPointers, CeladonGymScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonHotel_h: ; 0x4925d to 0x49269 (12 bytes) (bank=12) (id=140)
|
CeladonHotel_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db CELADON_HOTEL_HEIGHT, CELADON_HOTEL_WIDTH ; dimensions (y, x)
|
db CELADON_HOTEL_HEIGHT, CELADON_HOTEL_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonHotelBlocks, CeladonHotelTextPointers, CeladonHotelScript ; blocks, texts, scripts
|
dw CeladonHotelBlocks, CeladonHotelTextPointers, CeladonHotelScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonHouse_h: ; 0x49202 to 0x4920e (12 bytes) (bank=12) (id=139)
|
CeladonHouse_h:
|
||||||
db MANSION ; tileset
|
db MANSION ; tileset
|
||||||
db CELADON_HOUSE_HEIGHT, CELADON_HOUSE_WIDTH ; dimensions (y, x)
|
db CELADON_HOUSE_HEIGHT, CELADON_HOUSE_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonHouseBlocks, CeladonHouseTextPointers, CeladonHouseScript ; blocks, texts, scripts
|
dw CeladonHouseBlocks, CeladonHouseTextPointers, CeladonHouseScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMansion1_h: ; 0x48688 to 0x48694 (12 bytes) (bank=12) (id=128)
|
CeladonMansion1_h:
|
||||||
db MANSION ; tileset
|
db MANSION ; tileset
|
||||||
db CELADON_MANSION_1_HEIGHT, CELADON_MANSION_1_WIDTH ; dimensions (y, x)
|
db CELADON_MANSION_1_HEIGHT, CELADON_MANSION_1_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMansion1Blocks, CeladonMansion1TextPointers, CeladonMansion1Script ; blocks, texts, scripts
|
dw CeladonMansion1Blocks, CeladonMansion1TextPointers, CeladonMansion1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMansion2_h: ; 0x4872e to 0x4873a (12 bytes) (bank=12) (id=129)
|
CeladonMansion2_h:
|
||||||
db MANSION ; tileset
|
db MANSION ; tileset
|
||||||
db CELADON_MANSION_2_HEIGHT, CELADON_MANSION_2_WIDTH ; dimensions (y, x)
|
db CELADON_MANSION_2_HEIGHT, CELADON_MANSION_2_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMansion2Blocks, CeladonMansion2TextPointers, CeladonMansion2Script ; blocks, texts, scripts
|
dw CeladonMansion2Blocks, CeladonMansion2TextPointers, CeladonMansion2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMansion3_h: ; 0x48784 to 0x48790 (12 bytes) (bank=12) (id=130)
|
CeladonMansion3_h:
|
||||||
db MANSION ; tileset
|
db MANSION ; tileset
|
||||||
db CELADON_MANSION_3_HEIGHT, CELADON_MANSION_3_WIDTH ; dimensions (y, x)
|
db CELADON_MANSION_3_HEIGHT, CELADON_MANSION_3_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMansion3Blocks, CeladonMansion3TextPointers, CeladonMansion3Script ; blocks, texts, scripts
|
dw CeladonMansion3Blocks, CeladonMansion3TextPointers, CeladonMansion3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMansion4_h: ; 0x4885f to 0x4886b (12 bytes) (bank=12) (id=131)
|
CeladonMansion4_h:
|
||||||
db MANSION ; tileset
|
db MANSION ; tileset
|
||||||
db CELADON_MANSION_4_HEIGHT, CELADON_MANSION_4_WIDTH ; dimensions (y, x)
|
db CELADON_MANSION_4_HEIGHT, CELADON_MANSION_4_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMansion4Blocks, CeladonMansion4TextPointers, CeladonMansion4Script ; blocks, texts, scripts
|
dw CeladonMansion4Blocks, CeladonMansion4TextPointers, CeladonMansion4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMansion5_h: ; 0x1dd2e to 0x1dd3a (12 bytes) (bank=7) (id=132)
|
CeladonMansion5_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db CELADON_MANSION_5_HEIGHT, CELADON_MANSION_5_WIDTH ; dimensions (y, x)
|
db CELADON_MANSION_5_HEIGHT, CELADON_MANSION_5_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMansion5Blocks, CeladonMansion5TextPointers, CeladonMansion5Script ; blocks, texts, scripts
|
dw CeladonMansion5Blocks, CeladonMansion5TextPointers, CeladonMansion5Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMart1_h: ; 0x60f7a to 0x60f86 (12 bytes) (id=122)
|
CeladonMart1_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_1_HEIGHT, CELADON_MART_1_WIDTH ; dimensions (y, x)
|
db CELADON_MART_1_HEIGHT, CELADON_MART_1_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMart1Blocks, CeladonMart1TextPointers, CeladonMart1Script ; blocks, texts, scripts
|
dw CeladonMart1Blocks, CeladonMart1TextPointers, CeladonMart1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMart2_h: ; 0x560e9 to 0x560f5 (12 bytes) (id=123)
|
CeladonMart2_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_2_HEIGHT, CELADON_MART_2_WIDTH ; dimensions (y, x)
|
db CELADON_MART_2_HEIGHT, CELADON_MART_2_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMart2Blocks, CeladonMart2TextPointers, CeladonMart2Script ; blocks, texts, scripts
|
dw CeladonMart2Blocks, CeladonMart2TextPointers, CeladonMart2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMart3_h: ; 0x48219 to 0x48225 (12 bytes) (bank=12) (id=124)
|
CeladonMart3_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_3_HEIGHT, CELADON_MART_3_WIDTH ; dimensions (y, x)
|
db CELADON_MART_3_HEIGHT, CELADON_MART_3_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMart3Blocks, CeladonMart3TextPointers, CeladonMart3Script ; blocks, texts, scripts
|
dw CeladonMart3Blocks, CeladonMart3TextPointers, CeladonMart3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMart4_h: ; 0x4834a to 0x48356 (12 bytes) (bank=12) (id=125)
|
CeladonMart4_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_4_HEIGHT, CELADON_MART_4_WIDTH ; dimensions (y, x)
|
db CELADON_MART_4_HEIGHT, CELADON_MART_4_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMart4Blocks, CeladonMart4TextPointers, CeladonMart4Script ; blocks, texts, scripts
|
dw CeladonMart4Blocks, CeladonMart4TextPointers, CeladonMart4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMart5_h: ; 0x4905d to 0x49069 (12 bytes) (bank=12) (id=136)
|
CeladonMart5_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_5_HEIGHT, CELADON_MART_5_WIDTH ; dimensions (y, x)
|
db CELADON_MART_5_HEIGHT, CELADON_MART_5_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMart5Blocks, CeladonMart5TextPointers, CeladonMart5Script ; blocks, texts, scripts
|
dw CeladonMart5Blocks, CeladonMart5TextPointers, CeladonMart5Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMartElevator_h: ; 0x485f4 to 0x48600 (12 bytes) (bank=12) (id=127)
|
CeladonMartElevator_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_ELEVATOR_HEIGHT, CELADON_MART_ELEVATOR_WIDTH ; dimensions (y, x)
|
db CELADON_MART_ELEVATOR_HEIGHT, CELADON_MART_ELEVATOR_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMartElevatorBlocks, CeladonMartElevatorTextPointers, CeladonMartElevatorScript ; blocks, texts, scripts
|
dw CeladonMartElevatorBlocks, CeladonMartElevatorTextPointers, CeladonMartElevatorScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonMartRoof_h: ; 0x483c9 to 0x483d5 (12 bytes) (bank=12) (id=126)
|
CeladonMartRoof_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_MART_ROOF_HEIGHT, CELADON_MART_ROOF_WIDTH ; dimensions (y, x)
|
db CELADON_MART_ROOF_HEIGHT, CELADON_MART_ROOF_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonMartRoofBlocks, CeladonMartRoofTextPointers, CeladonMartRoofScript ; blocks, texts, scripts
|
dw CeladonMartRoofBlocks, CeladonMartRoofTextPointers, CeladonMartRoofScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonPokecenter_h: ; 0x488ac to 0x488b8 (12 bytes) (bank=12) (id=133)
|
CeladonPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db CELADON_POKECENTER_HEIGHT, CELADON_POKECENTER_WIDTH ; dimensions (y, x)
|
db CELADON_POKECENTER_HEIGHT, CELADON_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonPokecenterBlocks, CeladonPokecenterTextPointers, CeladonPokecenterScript ; blocks, texts, scripts
|
dw CeladonPokecenterBlocks, CeladonPokecenterTextPointers, CeladonPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeladonPrizeRoom_h: ; 0x490e4 to 0x490f0 (12 bytes) (bank=12) (id=137)
|
CeladonPrizeRoom_h:
|
||||||
db LOBBY ; tileset
|
db LOBBY ; tileset
|
||||||
db CELADON_PRIZE_ROOM_HEIGHT, CELADON_PRIZE_ROOM_WIDTH ; dimensions (y, x)
|
db CELADON_PRIZE_ROOM_HEIGHT, CELADON_PRIZE_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw CeladonPrizeRoomBlocks, CeladonPrizeRoomTextPointers, CeladonPrizeRoomScript ; blocks, texts, scripts
|
dw CeladonPrizeRoomBlocks, CeladonPrizeRoomTextPointers, CeladonPrizeRoomScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanCity_h: ; 0x1874e to 0x18786 (56 bytes) (bank=6) (id=3)
|
CeruleanCity_h:
|
||||||
db OVERWORLD ; tileset
|
db OVERWORLD ; tileset
|
||||||
db CERULEAN_CITY_HEIGHT, CERULEAN_CITY_WIDTH ; dimensions (y, x)
|
db CERULEAN_CITY_HEIGHT, CERULEAN_CITY_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanCityBlocks, CeruleanCityTextPointers, CeruleanCityScript ; blocks, texts, scripts
|
dw CeruleanCityBlocks, CeruleanCityTextPointers, CeruleanCityScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanGym_h: ; 0x5c6a7 to 0x5c6b3 (12 bytes) (id=65)
|
CeruleanGym_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db CERULEAN_GYM_HEIGHT, CERULEAN_GYM_WIDTH ; dimensions (y, x)
|
db CERULEAN_GYM_HEIGHT, CERULEAN_GYM_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanGymBlocks, CeruleanGymTextPointers, CeruleanGymScript ; blocks, texts, scripts
|
dw CeruleanGymBlocks, CeruleanGymTextPointers, CeruleanGymScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanHouse1_h: ; 0x1d6ea to 0x1d6f6 (12 bytes) (bank=7) (id=63)
|
CeruleanHouse1_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db CERULEAN_HOUSE_1_HEIGHT, CERULEAN_HOUSE_1_WIDTH ; dimensions (y, x)
|
db CERULEAN_HOUSE_1_HEIGHT, CERULEAN_HOUSE_1_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanHouse1Blocks, CeruleanHouse1TextPointers, CeruleanHouse1Script ; blocks, texts, scripts
|
dw CeruleanHouse1Blocks, CeruleanHouse1TextPointers, CeruleanHouse1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanHouse2_h: ; 0x74dfd to 0x74e09 (12 bytes) (id=230)
|
CeruleanHouse2_h:
|
||||||
db SHIP ; tileset
|
db SHIP ; tileset
|
||||||
db CERULEAN_HOUSE_2_HEIGHT, CERULEAN_HOUSE_2_WIDTH ; dimensions (y, x)
|
db CERULEAN_HOUSE_2_HEIGHT, CERULEAN_HOUSE_2_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanHouse2Blocks, CeruleanHouse2TextPointers, CeruleanHouse2Script ; blocks, texts, scripts
|
dw CeruleanHouse2Blocks, CeruleanHouse2TextPointers, CeruleanHouse2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanHouseTrashed_h: ; 0x1d679 to 0x1d685 (12 bytes) (bank=7) (id=62)
|
CeruleanHouseTrashed_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db TRASHED_HOUSE_HEIGHT, TRASHED_HOUSE_WIDTH ; dimensions (y, x)
|
db TRASHED_HOUSE_HEIGHT, TRASHED_HOUSE_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanHouseTrashedBlocks, CeruleanHouseTrashedTextPointers, CeruleanHouseTrashedScript ; blocks, texts, scripts
|
dw CeruleanHouseTrashedBlocks, CeruleanHouseTrashedTextPointers, CeruleanHouseTrashedScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanMart_h: ; 0x5c889 to 0x5c895 (12 bytes) (id=67)
|
CeruleanMart_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db CERULEAN_MART_HEIGHT, CERULEAN_MART_WIDTH ; dimensions (y, x)
|
db CERULEAN_MART_HEIGHT, CERULEAN_MART_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanMartBlocks, CeruleanMartTextPointers, CeruleanMartScript ; blocks, texts, scripts
|
dw CeruleanMartBlocks, CeruleanMartTextPointers, CeruleanMartScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CeruleanPokecenter_h: ; 0x5c639 to 0x5c645 (12 bytes) (id=64)
|
CeruleanPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db CERULEAN_POKECENTER_HEIGHT, CERULEAN_POKECENTER_WIDTH ; dimensions (y, x)
|
db CERULEAN_POKECENTER_HEIGHT, CERULEAN_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw CeruleanPokecenterBlocks, CeruleanPokecenterTextPointers, CeruleanPokecenterScript ; blocks, texts, scripts
|
dw CeruleanPokecenterBlocks, CeruleanPokecenterTextPointers, CeruleanPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CinnabarGym_h: ; 0x7573e to 0x7574a (12 bytes) (id=166)
|
CinnabarGym_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db CINNABAR_GYM_HEIGHT, CINNABAR_GYM_WIDTH ; dimensions (y, x)
|
db CINNABAR_GYM_HEIGHT, CINNABAR_GYM_WIDTH ; dimensions (y, x)
|
||||||
dw CinnabarGymBlocks, CinnabarGymTextPointers, CinnabarGymScript ; blocks, texts, scripts
|
dw CinnabarGymBlocks, CinnabarGymTextPointers, CinnabarGymScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CinnabarIsland_h: ; 0x1c000 to 0x1c022 (34 bytes) (bank=7) (id=8)
|
CinnabarIsland_h:
|
||||||
db OVERWORLD ; tileset
|
db OVERWORLD ; tileset
|
||||||
db CINNABAR_ISLAND_HEIGHT, CINNABAR_ISLAND_WIDTH ; dimensions (y, x)
|
db CINNABAR_ISLAND_HEIGHT, CINNABAR_ISLAND_WIDTH ; dimensions (y, x)
|
||||||
dw CinnabarIslandBlocks, CinnabarIslandTextPointers, CinnabarIslandScript ; blocks, texts, scripts
|
dw CinnabarIslandBlocks, CinnabarIslandTextPointers, CinnabarIslandScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CinnabarMart_h: ; 0x75e72 to 0x75e7e (12 bytes) (id=172)
|
CinnabarMart_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db CINNABAR_MART_HEIGHT, CINNABAR_MART_WIDTH ; dimensions (y, x)
|
db CINNABAR_MART_HEIGHT, CINNABAR_MART_WIDTH ; dimensions (y, x)
|
||||||
dw CinnabarMartBlocks, CinnabarMartTextPointers, CinnabarMartScript ; blocks, texts, scripts
|
dw CinnabarMartBlocks, CinnabarMartTextPointers, CinnabarMartScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CinnabarPokecenter_h: ; 0x75e20 to 0x75e2c (12 bytes) (id=171)
|
CinnabarPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db CINNABAR_POKECENTER_HEIGHT, CINNABAR_POKECENTER_WIDTH ; dimensions (y, x)
|
db CINNABAR_POKECENTER_HEIGHT, CINNABAR_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw CinnabarPokecenterBlocks, CinnabarPokecenterTextPointers, CinnabarPokecenterScript ; blocks, texts, scripts
|
dw CinnabarPokecenterBlocks, CinnabarPokecenterTextPointers, CinnabarPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Colosseum_h: ; 0x4fd71 to 0x4fd7d (12 bytes) (id=240)
|
Colosseum_h:
|
||||||
db CLUB ; tileset
|
db CLUB ; tileset
|
||||||
db COLOSSEUM_HEIGHT, COLOSSEUM_WIDTH ; dimensions (y, x)
|
db COLOSSEUM_HEIGHT, COLOSSEUM_WIDTH ; dimensions (y, x)
|
||||||
dw ColosseumBlocks, ColosseumTextPointers, ColosseumScript ; blocks, texts, scripts
|
dw ColosseumBlocks, ColosseumTextPointers, ColosseumScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CopycatsHouse1F_h: ; 0x75eb7 to 0x75ec3 (12 bytes) (id=175)
|
CopycatsHouse1F_h:
|
||||||
db REDS_HOUSE_1 ; tileset
|
db REDS_HOUSE_1 ; tileset
|
||||||
db COPYCATS_HOUSE_1F_HEIGHT, COPYCATS_HOUSE_1F_WIDTH ; dimensions (y, x)
|
db COPYCATS_HOUSE_1F_HEIGHT, COPYCATS_HOUSE_1F_WIDTH ; dimensions (y, x)
|
||||||
dw CopycatsHouse1FBlocks, CopycatsHouse1FTextPointers, CopycatsHouse1FScript ; blocks, texts, scripts
|
dw CopycatsHouse1FBlocks, CopycatsHouse1FTextPointers, CopycatsHouse1FScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
CopycatsHouse2F_h: ; 0x5cc65 to 0x5cc71 (12 bytes) (id=176)
|
CopycatsHouse2F_h:
|
||||||
db REDS_HOUSE_2 ; tileset
|
db REDS_HOUSE_2 ; tileset
|
||||||
db COPYCATS_HOUSE_2F_HEIGHT, COPYCATS_HOUSE_2F_WIDTH ; dimensions (y, x)
|
db COPYCATS_HOUSE_2F_HEIGHT, COPYCATS_HOUSE_2F_WIDTH ; dimensions (y, x)
|
||||||
dw CopycatsHouse2FBlocks, CopycatsHouse2FTextPointers, CopycatsHouse2FScript ; blocks, texts, scripts
|
dw CopycatsHouse2FBlocks, CopycatsHouse2FTextPointers, CopycatsHouse2FScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
DayCareM_h: ; 0x56243 to 0x5624f (12 bytes) (id=72)
|
DayCareM_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db DAYCAREM_HEIGHT, DAYCAREM_WIDTH ; dimensions (y, x)
|
db DAYCAREM_HEIGHT, DAYCAREM_WIDTH ; dimensions (y, x)
|
||||||
dw DayCareMBlocks, DayCareMTextPointers, DayCareMScript ; blocks, texts, scripts
|
dw DayCareMBlocks, DayCareMTextPointers, DayCareMScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
DiglettsCave_h: ; 0x61f62 to 0x61f6e (12 bytes) (id=197)
|
DiglettsCave_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db DIGLETTS_CAVE_HEIGHT, DIGLETTS_CAVE_WIDTH ; dimensions (y, x)
|
db DIGLETTS_CAVE_HEIGHT, DIGLETTS_CAVE_WIDTH ; dimensions (y, x)
|
||||||
dw DiglettsCaveBlocks, DiglettsCaveTextPointers, DiglettsCaveScript ; blocks, texts, scripts
|
dw DiglettsCaveBlocks, DiglettsCaveTextPointers, DiglettsCaveScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
DiglettsCaveEntranceRoute11_h: ; 0x1e5ae to 0x1e5ba (12 bytes) (bank=7) (id=85)
|
DiglettsCaveEntranceRoute11_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db DIGLETTS_CAVE_ENTRANCE_HEIGHT, DIGLETTS_CAVE_ENTRANCE_WIDTH ; dimensions (y, x)
|
db DIGLETTS_CAVE_ENTRANCE_HEIGHT, DIGLETTS_CAVE_ENTRANCE_WIDTH ; dimensions (y, x)
|
||||||
dw DiglettsCaveEntranceRoute11Blocks, DiglettsCaveEntranceRoute11TextPointers, DiglettsCaveEntranceRoute11Script ; blocks, texts, scripts
|
dw DiglettsCaveEntranceRoute11Blocks, DiglettsCaveEntranceRoute11TextPointers, DiglettsCaveEntranceRoute11Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
DiglettsCaveRoute2_h: ; 0x1dea4 to 0x1deb0 (12 bytes) (bank=7) (id=46)
|
DiglettsCaveRoute2_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db DIGLETTS_CAVE_EXIT_HEIGHT, DIGLETTS_CAVE_EXIT_WIDTH ; dimensions (y, x)
|
db DIGLETTS_CAVE_EXIT_HEIGHT, DIGLETTS_CAVE_EXIT_WIDTH ; dimensions (y, x)
|
||||||
dw DiglettsCaveRoute2Blocks, DiglettsCaveRoute2TextPointers, DiglettsCaveRoute2Script ; blocks, texts, scripts
|
dw DiglettsCaveRoute2Blocks, DiglettsCaveRoute2TextPointers, DiglettsCaveRoute2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FanClub_h: ; 0x59b64 to 0x59b70 (12 bytes) (id=90)
|
FanClub_h:
|
||||||
db INTERIOR ; tileset
|
db INTERIOR ; tileset
|
||||||
db POKEMON_FAN_CLUB_HEIGHT, POKEMON_FAN_CLUB_WIDTH ; dimensions (y, x)
|
db POKEMON_FAN_CLUB_HEIGHT, POKEMON_FAN_CLUB_WIDTH ; dimensions (y, x)
|
||||||
dw FanClubBlocks, FanClubTextPointers, FanClubScript ; blocks, texts, scripts
|
dw FanClubBlocks, FanClubTextPointers, FanClubScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FightingDojo_h: ; 0x5cd51 to 0x5cd5d (12 bytes) (id=177)
|
FightingDojo_h:
|
||||||
db DOJO ; tileset
|
db DOJO ; tileset
|
||||||
db FIGHTING_DOJO_HEIGHT, FIGHTING_DOJO_WIDTH ; dimensions (y, x)
|
db FIGHTING_DOJO_HEIGHT, FIGHTING_DOJO_WIDTH ; dimensions (y, x)
|
||||||
dw FightingDojoBlocks, FightingDojoTextPointers, FightingDojoScript ; blocks, texts, scripts
|
dw FightingDojoBlocks, FightingDojoTextPointers, FightingDojoScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaCity_h: ; 0x18ba7 to 0x18bd4 (45 bytes) (bank=6) (id=7)
|
FuchsiaCity_h:
|
||||||
db OVERWORLD ; tileset
|
db OVERWORLD ; tileset
|
||||||
db FUCHSIA_CITY_HEIGHT, FUCHSIA_CITY_WIDTH ; dimensions (y, x)
|
db FUCHSIA_CITY_HEIGHT, FUCHSIA_CITY_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaCityBlocks, FuchsiaCityTextPointers, FuchsiaCityScript ; blocks, texts, scripts
|
dw FuchsiaCityBlocks, FuchsiaCityTextPointers, FuchsiaCityScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaGym_h: ; 0x75431 to 0x7543d (12 bytes) (id=157)
|
FuchsiaGym_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db FUCHSIA_GYM_HEIGHT, FUCHSIA_GYM_WIDTH ; dimensions (y, x)
|
db FUCHSIA_GYM_HEIGHT, FUCHSIA_GYM_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaGymBlocks, FuchsiaGymTextPointers, FuchsiaGymScript ; blocks, texts, scripts
|
dw FuchsiaGymBlocks, FuchsiaGymTextPointers, FuchsiaGymScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaHouse1_h: ; 0x7500c to 0x75018 (12 bytes) (id=153)
|
FuchsiaHouse1_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db FUCHSIA_HOUSE_1_HEIGHT, FUCHSIA_HOUSE_1_WIDTH ; dimensions (y, x)
|
db FUCHSIA_HOUSE_1_HEIGHT, FUCHSIA_HOUSE_1_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaHouse1Blocks, FuchsiaHouse1TextPointers, FuchsiaHouse1Script ; blocks, texts, scripts
|
dw FuchsiaHouse1Blocks, FuchsiaHouse1TextPointers, FuchsiaHouse1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaHouse2_h: ; 0x750a9 to 0x750b5 (12 bytes) (id=155)
|
FuchsiaHouse2_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db FUCHSIA_HOUSE_2_HEIGHT, FUCHSIA_HOUSE_2_WIDTH ; dimensions (y, x)
|
db FUCHSIA_HOUSE_2_HEIGHT, FUCHSIA_HOUSE_2_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaHouse2Blocks, FuchsiaHouse2TextPointers, FuchsiaHouse2Script ; blocks, texts, scripts
|
dw FuchsiaHouse2Blocks, FuchsiaHouse2TextPointers, FuchsiaHouse2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaHouse3_h: ; 0x56170 to 0x5617c (12 bytes) (id=164)
|
FuchsiaHouse3_h:
|
||||||
db SHIP ; tileset
|
db SHIP ; tileset
|
||||||
db FUCHSIA_HOUSE_3_HEIGHT, FUCHSIA_HOUSE_3_WIDTH ; dimensions (y, x)
|
db FUCHSIA_HOUSE_3_HEIGHT, FUCHSIA_HOUSE_3_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaHouse3Blocks, FuchsiaHouse3TextPointers, FuchsiaHouse3Script ; blocks, texts, scripts
|
dw FuchsiaHouse3Blocks, FuchsiaHouse3TextPointers, FuchsiaHouse3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaMart_h: ; 0x1dd7c to 0x1dd88 (12 bytes) (bank=7) (id=152)
|
FuchsiaMart_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db FUCHSIA_MART_HEIGHT, FUCHSIA_MART_WIDTH ; dimensions (y, x)
|
db FUCHSIA_MART_HEIGHT, FUCHSIA_MART_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaMartBlocks, FuchsiaMartTextPointers, FuchsiaMartScript ; blocks, texts, scripts
|
dw FuchsiaMartBlocks, FuchsiaMartTextPointers, FuchsiaMartScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaMeetingRoom_h: ; 0x756d7 to 0x756e3 (12 bytes) (id=158)
|
FuchsiaMeetingRoom_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db FUCHSIA_MEETING_ROOM_HEIGHT, FUCHSIA_MEETING_ROOM_WIDTH ; dimensions (y, x)
|
db FUCHSIA_MEETING_ROOM_HEIGHT, FUCHSIA_MEETING_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaMeetingRoomBlocks, FuchsiaMeetingRoomTextPointers, FuchsiaMeetingRoomScript ; blocks, texts, scripts
|
dw FuchsiaMeetingRoomBlocks, FuchsiaMeetingRoomTextPointers, FuchsiaMeetingRoomScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FuchsiaPokecenter_h: ; 0x75057 to 0x75063 (12 bytes) (id=154)
|
FuchsiaPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db FUCHSIA_POKECENTER_HEIGHT, FUCHSIA_POKECENTER_WIDTH ; dimensions (y, x)
|
db FUCHSIA_POKECENTER_HEIGHT, FUCHSIA_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw FuchsiaPokecenterBlocks, FuchsiaPokecenterTextPointers, FuchsiaPokecenterScript ; blocks, texts, scripts
|
dw FuchsiaPokecenterBlocks, FuchsiaPokecenterTextPointers, FuchsiaPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
HallofFameRoom_h: ; 0x5a492 to 0x5a49e (12 bytes) (id=118)
|
HallofFameRoom_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db HALL_OF_FAME_HEIGHT, HALL_OF_FAME_WIDTH ; dimensions (y, x)
|
db HALL_OF_FAME_HEIGHT, HALL_OF_FAME_WIDTH ; dimensions (y, x)
|
||||||
dw HallofFameRoomBlocks, HallofFameRoomTextPointers, HallofFameRoomScript ; blocks, texts, scripts
|
dw HallofFameRoomBlocks, HallofFameRoomTextPointers, HallofFameRoomScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
IndigoPlateau_h: ; 0x5091e to 0x50935 (23 bytes) (id=9)
|
IndigoPlateau_h:
|
||||||
db PLATEAU ; tileset
|
db PLATEAU ; tileset
|
||||||
db INDIGO_PLATEAU_HEIGHT, INDIGO_PLATEAU_WIDTH ; dimensions (y, x)
|
db INDIGO_PLATEAU_HEIGHT, INDIGO_PLATEAU_WIDTH ; dimensions (y, x)
|
||||||
dw IndigoPlateauBlocks, IndigoPlateauTextPointers, IndigoPlateauScript ; blocks, texts, scripts
|
dw IndigoPlateauBlocks, IndigoPlateauTextPointers, IndigoPlateauScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
IndigoPlateauLobby_h: ; 0x19c4f to 0x19c5b (12 bytes) (bank=6) (id=174)
|
IndigoPlateauLobby_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db INDIGO_PLATEAU_LOBBY_HEIGHT, INDIGO_PLATEAU_LOBBY_WIDTH ; dimensions (y, x)
|
db INDIGO_PLATEAU_LOBBY_HEIGHT, INDIGO_PLATEAU_LOBBY_WIDTH ; dimensions (y, x)
|
||||||
dw IndigoPlateauLobbyBlocks, IndigoPlateauLobbyTextPointers, IndigoPlateauLobbyScript ; blocks, texts, scripts
|
dw IndigoPlateauLobbyBlocks, IndigoPlateauLobbyTextPointers, IndigoPlateauLobbyScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lab1_h: ; 0x75b80 to 0x75b8c (12 bytes) (id=167)
|
Lab1_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db CINNABAR_LAB_1_HEIGHT, CINNABAR_LAB_1_WIDTH ; dimensions (y, x)
|
db CINNABAR_LAB_1_HEIGHT, CINNABAR_LAB_1_WIDTH ; dimensions (y, x)
|
||||||
dw Lab1Blocks, Lab1TextPointers, Lab1Script ; blocks, texts, scripts
|
dw Lab1Blocks, Lab1TextPointers, Lab1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lab2_h: ; 0x75c15 to 0x75c21 (12 bytes) (id=168)
|
Lab2_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db CINNABAR_LAB_2_HEIGHT, CINNABAR_LAB_2_WIDTH ; dimensions (y, x)
|
db CINNABAR_LAB_2_HEIGHT, CINNABAR_LAB_2_WIDTH ; dimensions (y, x)
|
||||||
dw Lab2Blocks, Lab2TextPointers, Lab2Script ; blocks, texts, scripts
|
dw Lab2Blocks, Lab2TextPointers, Lab2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lab3_h: ; 0x75c7b to 0x75c87 (12 bytes) (id=169)
|
Lab3_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db CINNABAR_LAB_3_HEIGHT, CINNABAR_LAB_3_WIDTH ; dimensions (y, x)
|
db CINNABAR_LAB_3_HEIGHT, CINNABAR_LAB_3_WIDTH ; dimensions (y, x)
|
||||||
dw Lab3Blocks, Lab3TextPointers, Lab3Script ; blocks, texts, scripts
|
dw Lab3Blocks, Lab3TextPointers, Lab3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lab4_h: ; 0x75d25 to 0x75d31 (12 bytes) (id=170)
|
Lab4_h:
|
||||||
db LAB ; tileset
|
db LAB ; tileset
|
||||||
db CINNABAR_LAB_4_HEIGHT, CINNABAR_LAB_4_WIDTH ; dimensions (y, x)
|
db CINNABAR_LAB_4_HEIGHT, CINNABAR_LAB_4_WIDTH ; dimensions (y, x)
|
||||||
dw Lab4Blocks, Lab4TextPointers, Lab4Script ; blocks, texts, scripts
|
dw Lab4Blocks, Lab4TextPointers, Lab4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lance_h: ; 0x5a2a2 to 0x5a2ae (12 bytes) (id=113)
|
Lance_h:
|
||||||
db DOJO ; tileset
|
db DOJO ; tileset
|
||||||
db LANCES_ROOM_HEIGHT, LANCES_ROOM_WIDTH ; dimensions (y, x)
|
db LANCES_ROOM_HEIGHT, LANCES_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw LanceBlocks, LanceTextPointers, LanceScript ; blocks, texts, scripts
|
dw LanceBlocks, LanceTextPointers, LanceScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
LavenderHouse1_h: ; 0x1d89c to 0x1d8a8 (12 bytes) (bank=7) (id=149)
|
LavenderHouse1_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db LAVENDER_HOUSE_1_HEIGHT, LAVENDER_HOUSE_1_WIDTH ; dimensions (y, x)
|
db LAVENDER_HOUSE_1_HEIGHT, LAVENDER_HOUSE_1_WIDTH ; dimensions (y, x)
|
||||||
dw LavenderHouse1Blocks, LavenderHouse1TextPointers, LavenderHouse1Script ; blocks, texts, scripts
|
dw LavenderHouse1Blocks, LavenderHouse1TextPointers, LavenderHouse1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
LavenderHouse2_h: ; 0x1d9a2 to 0x1d9ae (12 bytes) (bank=7) (id=151)
|
LavenderHouse2_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db LAVENDER_HOUSE_2_HEIGHT, LAVENDER_HOUSE_2_WIDTH ; dimensions (y, x)
|
db LAVENDER_HOUSE_2_HEIGHT, LAVENDER_HOUSE_2_WIDTH ; dimensions (y, x)
|
||||||
dw LavenderHouse2Blocks, LavenderHouse2TextPointers, LavenderHouse2Script ; blocks, texts, scripts
|
dw LavenderHouse2Blocks, LavenderHouse2TextPointers, LavenderHouse2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
LavenderMart_h: ; 0x5c920 to 0x5c92c (12 bytes) (id=150)
|
LavenderMart_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db LAVENDER_MART_HEIGHT, LAVENDER_MART_WIDTH ; dimensions (y, x)
|
db LAVENDER_MART_HEIGHT, LAVENDER_MART_WIDTH ; dimensions (y, x)
|
||||||
dw LavenderMartBlocks, LavenderMartTextPointers, LavenderMartScript ; blocks, texts, scripts
|
dw LavenderMartBlocks, LavenderMartTextPointers, LavenderMartScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
LavenderPokecenter_h: ; 0x5c8ce to 0x5c8da (12 bytes) (id=141)
|
LavenderPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db LAVENDER_POKECENTER_HEIGHT, LAVENDER_POKECENTER_WIDTH ; dimensions (y, x)
|
db LAVENDER_POKECENTER_HEIGHT, LAVENDER_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw LavenderPokecenterBlocks, LavenderPokecenterTextPointers, LavenderPokecenterScript ; blocks, texts, scripts
|
dw LavenderPokecenterBlocks, LavenderPokecenterTextPointers, LavenderPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
LavenderTown_h: ; 0x44000 to 0x4402d (45 bytes) (bank=11) (id=4)
|
LavenderTown_h:
|
||||||
db OVERWORLD ; tileset
|
db OVERWORLD ; tileset
|
||||||
db LAVENDER_TOWN_HEIGHT, LAVENDER_TOWN_WIDTH ; dimensions (y, x)
|
db LAVENDER_TOWN_HEIGHT, LAVENDER_TOWN_WIDTH ; dimensions (y, x)
|
||||||
dw LavenderTownBlocks, LavenderTownTextPointers, LavenderTownScript ; blocks, texts, scripts
|
dw LavenderTownBlocks, LavenderTownTextPointers, LavenderTownScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Lorelei_h: ; 0x7616f to 0x7617b (12 bytes) (id=245)
|
Lorelei_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db LORELEIS_ROOM_HEIGHT, LORELEIS_ROOM_WIDTH ; dimensions (y, x)
|
db LORELEIS_ROOM_HEIGHT, LORELEIS_ROOM_WIDTH ; dimensions (y, x)
|
||||||
dw LoreleiBlocks, LoreleiTextPointers, LoreleiScript ; blocks, texts, scripts
|
dw LoreleiBlocks, LoreleiTextPointers, LoreleiScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Mansion1_h: ; 0x442a3 to 0x442af (12 bytes) (bank=11) (id=165)
|
Mansion1_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db MANSION_1_HEIGHT, MANSION_1_WIDTH ; dimensions (y, x)
|
db MANSION_1_HEIGHT, MANSION_1_WIDTH ; dimensions (y, x)
|
||||||
dw Mansion1Blocks, Mansion1TextPointers, Mansion1Script ; blocks, texts, scripts
|
dw Mansion1Blocks, Mansion1TextPointers, Mansion1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Mansion2_h: ; 0x51fcc to 0x51fd8 (12 bytes) (id=214)
|
Mansion2_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db MANSION_2_HEIGHT, MANSION_2_WIDTH ; dimensions (y, x)
|
db MANSION_2_HEIGHT, MANSION_2_WIDTH ; dimensions (y, x)
|
||||||
dw Mansion2Blocks, Mansion2TextPointers, Mansion2Script ; blocks, texts, scripts
|
dw Mansion2Blocks, Mansion2TextPointers, Mansion2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Mansion3_h: ; 0x521e2 to 0x521ee (12 bytes) (id=215)
|
Mansion3_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db MANSION_3_HEIGHT, MANSION_3_WIDTH ; dimensions (y, x)
|
db MANSION_3_HEIGHT, MANSION_3_WIDTH ; dimensions (y, x)
|
||||||
dw Mansion3Blocks, Mansion3TextPointers, Mansion3Script ; blocks, texts, scripts
|
dw Mansion3Blocks, Mansion3TextPointers, Mansion3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Mansion4_h: ; 0x523ad to 0x523b9 (12 bytes) (id=216)
|
Mansion4_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db MANSION_4_HEIGHT, MANSION_4_WIDTH ; dimensions (y, x)
|
db MANSION_4_HEIGHT, MANSION_4_WIDTH ; dimensions (y, x)
|
||||||
dw Mansion4Blocks, Mansion4TextPointers, Mansion4Script ; blocks, texts, scripts
|
dw Mansion4Blocks, Mansion4TextPointers, Mansion4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
MtMoon1_h: ; 0x499bc to 0x499c8 (12 bytes) (id=59)
|
MtMoon1_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db MT_MOON_1_HEIGHT, MT_MOON_1_WIDTH ; dimensions (y, x)
|
db MT_MOON_1_HEIGHT, MT_MOON_1_WIDTH ; dimensions (y, x)
|
||||||
dw MtMoon1Blocks, MtMoon1TextPointers, MtMoon1Script ; blocks, texts, scripts
|
dw MtMoon1Blocks, MtMoon1TextPointers, MtMoon1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
MtMoon2_h: ; 0x51a36 to 0x51a42 (12 bytes) (id=60)
|
MtMoon2_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db MT_MOON_2_HEIGHT, MT_MOON_2_WIDTH ; dimensions (y, x)
|
db MT_MOON_2_HEIGHT, MT_MOON_2_WIDTH ; dimensions (y, x)
|
||||||
dw MtMoon2Blocks, MtMoon2TextPointers, MtMoon2Script ; blocks, texts, scripts
|
dw MtMoon2Blocks, MtMoon2TextPointers, MtMoon2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
MtMoon3_h: ; 0x49cff to 0x49d0b (12 bytes) (id=61)
|
MtMoon3_h:
|
||||||
db CAVERN ; tileset
|
db CAVERN ; tileset
|
||||||
db MT_MOON_3_HEIGHT, MT_MOON_3_WIDTH ; dimensions (y, x)
|
db MT_MOON_3_HEIGHT, MT_MOON_3_WIDTH ; dimensions (y, x)
|
||||||
dw MtMoon3Blocks, MtMoon3TextPointers, MtMoon3Script ; blocks, texts, scripts
|
dw MtMoon3Blocks, MtMoon3TextPointers, MtMoon3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
MtMoonPokecenter_h: ; 0x492c3 to 0x492cf (12 bytes) (bank=12) (id=68)
|
MtMoonPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db MT_MOON_POKECENTER_HEIGHT, MT_MOON_POKECENTER_WIDTH ; dimensions (y, x)
|
db MT_MOON_POKECENTER_HEIGHT, MT_MOON_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw MtMoonPokecenterBlocks, MtMoonPokecenterTextPointers, MtMoonPokecenterScript ; blocks, texts, scripts
|
dw MtMoonPokecenterBlocks, MtMoonPokecenterTextPointers, MtMoonPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Museum1F_h: ; 0x5c0eb to 0x5c0f7 (12 bytes) (id=52)
|
Museum1F_h:
|
||||||
db MUSEUM ; tileset
|
db MUSEUM ; tileset
|
||||||
db MUSEUM_1F_HEIGHT, MUSEUM_1F_WIDTH ; dimensions (y, x)
|
db MUSEUM_1F_HEIGHT, MUSEUM_1F_WIDTH ; dimensions (y, x)
|
||||||
dw Museum1FBlocks, Museum1FTextPointers, Museum1FScript ; blocks, texts, scripts
|
dw Museum1FBlocks, Museum1FTextPointers, Museum1FScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Museum2F_h: ; 0x5c30b to 0x5c317 (12 bytes) (id=53)
|
Museum2F_h:
|
||||||
db MUSEUM ; tileset
|
db MUSEUM ; tileset
|
||||||
db MUSEUM_2F_HEIGHT, MUSEUM_2F_WIDTH ; dimensions (y, x)
|
db MUSEUM_2F_HEIGHT, MUSEUM_2F_WIDTH ; dimensions (y, x)
|
||||||
dw Museum2FBlocks, Museum2FTextPointers, Museum2FScript ; blocks, texts, scripts
|
dw Museum2FBlocks, Museum2FTextPointers, Museum2FScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
NameRater_h: ; 0x1da06 to 0x1da12 (12 bytes) (bank=7) (id=229)
|
NameRater_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db NAME_RATERS_HOUSE_HEIGHT, NAME_RATERS_HOUSE_WIDTH ; dimensions (y, x)
|
db NAME_RATERS_HOUSE_HEIGHT, NAME_RATERS_HOUSE_WIDTH ; dimensions (y, x)
|
||||||
dw NameRaterBlocks, NameRaterTextPointers, NameRaterScript ; blocks, texts, scripts
|
dw NameRaterBlocks, NameRaterTextPointers, NameRaterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
OaksLab_h: ; 0x1cb02 to 0x1cb0e (12 bytes) (bank=7) (id=40)
|
OaksLab_h:
|
||||||
db DOJO ; tileset
|
db DOJO ; tileset
|
||||||
db OAKS_LAB_HEIGHT, OAKS_LAB_WIDTH ; dimensions (y, x)
|
db OAKS_LAB_HEIGHT, OAKS_LAB_WIDTH ; dimensions (y, x)
|
||||||
dw OaksLabBlocks, OaksLabTextPointers, OaksLabScript ; blocks, texts, scripts
|
dw OaksLabBlocks, OaksLabTextPointers, OaksLabScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterCity_h: ; 0x18554 to 0x18576 (34 bytes) (bank=6) (id=2)
|
PewterCity_h:
|
||||||
db OVERWORLD ; tileset
|
db OVERWORLD ; tileset
|
||||||
db PEWTER_CITY_HEIGHT, PEWTER_CITY_WIDTH ; dimensions (y, x)
|
db PEWTER_CITY_HEIGHT, PEWTER_CITY_WIDTH ; dimensions (y, x)
|
||||||
dw PewterCityBlocks, PewterCityTextPointers, PewterCityScript ; blocks, texts, scripts
|
dw PewterCityBlocks, PewterCityTextPointers, PewterCityScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterGym_h: ; 0x5c37b to 0x5c387 (12 bytes) (id=54)
|
PewterGym_h:
|
||||||
db GYM ; tileset
|
db GYM ; tileset
|
||||||
db PEWTER_GYM_HEIGHT, PEWTER_GYM_WIDTH ; dimensions (y, x)
|
db PEWTER_GYM_HEIGHT, PEWTER_GYM_WIDTH ; dimensions (y, x)
|
||||||
dw PewterGymBlocks, PewterGymTextPointers, PewterGymScript ; blocks, texts, scripts
|
dw PewterGymBlocks, PewterGymTextPointers, PewterGymScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterHouse1_h: ; 0x1d5e7 to 0x1d5f3 (12 bytes) (bank=7) (id=55)
|
PewterHouse1_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db PEWTER_HOUSE_1_HEIGHT, PEWTER_HOUSE_1_WIDTH ; dimensions (y, x)
|
db PEWTER_HOUSE_1_HEIGHT, PEWTER_HOUSE_1_WIDTH ; dimensions (y, x)
|
||||||
dw PewterHouse1Blocks, PewterHouse1TextPointers, PewterHouse1Script ; blocks, texts, scripts
|
dw PewterHouse1Blocks, PewterHouse1TextPointers, PewterHouse1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterHouse2_h: ; 0x1d63c to 0x1d648 (12 bytes) (bank=7) (id=57)
|
PewterHouse2_h:
|
||||||
db HOUSE ; tileset
|
db HOUSE ; tileset
|
||||||
db PEWTER_HOUSE_2_HEIGHT, PEWTER_HOUSE_2_WIDTH ; dimensions (y, x)
|
db PEWTER_HOUSE_2_HEIGHT, PEWTER_HOUSE_2_WIDTH ; dimensions (y, x)
|
||||||
dw PewterHouse2Blocks, PewterHouse2TextPointers, PewterHouse2Script ; blocks, texts, scripts
|
dw PewterHouse2Blocks, PewterHouse2TextPointers, PewterHouse2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterMart_h: ; 0x74ca1 to 0x74cad (12 bytes) (id=56)
|
PewterMart_h:
|
||||||
db MART ; tileset
|
db MART ; tileset
|
||||||
db PEWTER_MART_HEIGHT, PEWTER_MART_WIDTH ; dimensions (y, x)
|
db PEWTER_MART_HEIGHT, PEWTER_MART_WIDTH ; dimensions (y, x)
|
||||||
dw PewterMartBlocks, PewterMartTextPointers, PewterMartScript ; blocks, texts, scripts
|
dw PewterMartBlocks, PewterMartTextPointers, PewterMartScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PewterPokecenter_h: ; 0x5c57b to 0x5c587 (12 bytes) (id=58)
|
PewterPokecenter_h:
|
||||||
db POKECENTER ; tileset
|
db POKECENTER ; tileset
|
||||||
db PEWTER_POKECENTER_HEIGHT, PEWTER_POKECENTER_WIDTH ; dimensions (y, x)
|
db PEWTER_POKECENTER_HEIGHT, PEWTER_POKECENTER_WIDTH ; dimensions (y, x)
|
||||||
dw PewterPokecenterBlocks, PewterPokecenterTextPointers, PewterPokecenterScript ; blocks, texts, scripts
|
dw PewterPokecenterBlocks, PewterPokecenterTextPointers, PewterPokecenterScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower1_h: ; 0x60420 to 0x6042c (12 bytes) (id=142)
|
PokemonTower1_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_1_HEIGHT, POKEMONTOWER_1_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_1_HEIGHT, POKEMONTOWER_1_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower1Blocks, PokemonTower1TextPointers, PokemonTower1Script ; blocks, texts, scripts
|
dw PokemonTower1Blocks, PokemonTower1TextPointers, PokemonTower1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower2_h: ; 0x604e6 to 0x604f2 (12 bytes) (id=143)
|
PokemonTower2_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_2_HEIGHT, POKEMONTOWER_2_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_2_HEIGHT, POKEMONTOWER_2_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower2Blocks, PokemonTower2TextPointers, PokemonTower2Script ; blocks, texts, scripts
|
dw PokemonTower2Blocks, PokemonTower2TextPointers, PokemonTower2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower3_h: ; 0x606c0 to 0x606cc (12 bytes) (id=144)
|
PokemonTower3_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_3_HEIGHT, POKEMONTOWER_3_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_3_HEIGHT, POKEMONTOWER_3_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower3Blocks, PokemonTower3TextPointers, PokemonTower3Script ; blocks, texts, scripts
|
dw PokemonTower3Blocks, PokemonTower3TextPointers, PokemonTower3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower4_h: ; 0x607ea to 0x607f6 (12 bytes) (id=145)
|
PokemonTower4_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_4_HEIGHT, POKEMONTOWER_4_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_4_HEIGHT, POKEMONTOWER_4_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower4Blocks, PokemonTower4TextPointers, PokemonTower4Script ; blocks, texts, scripts
|
dw PokemonTower4Blocks, PokemonTower4TextPointers, PokemonTower4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower5_h: ; 0x60926 to 0x60932 (12 bytes) (id=146)
|
PokemonTower5_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_5_HEIGHT, POKEMONTOWER_5_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_5_HEIGHT, POKEMONTOWER_5_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower5Blocks, PokemonTower5TextPointers, PokemonTower5Script ; blocks, texts, scripts
|
dw PokemonTower5Blocks, PokemonTower5TextPointers, PokemonTower5Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower6_h: ; 0x60ae3 to 0x60aef (12 bytes) (id=147)
|
PokemonTower6_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_6_HEIGHT, POKEMONTOWER_6_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_6_HEIGHT, POKEMONTOWER_6_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower6Blocks, PokemonTower6TextPointers, PokemonTower6Script ; blocks, texts, scripts
|
dw PokemonTower6Blocks, PokemonTower6TextPointers, PokemonTower6Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PokemonTower7_h: ; 0x60cf9 to 0x60d05 (12 bytes) (id=148)
|
PokemonTower7_h:
|
||||||
db CEMETERY ; tileset
|
db CEMETERY ; tileset
|
||||||
db POKEMONTOWER_7_HEIGHT, POKEMONTOWER_7_WIDTH ; dimensions (y, x)
|
db POKEMONTOWER_7_HEIGHT, POKEMONTOWER_7_WIDTH ; dimensions (y, x)
|
||||||
dw PokemonTower7Blocks, PokemonTower7TextPointers, PokemonTower7Script ; blocks, texts, scripts
|
dw PokemonTower7Blocks, PokemonTower7TextPointers, PokemonTower7Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PowerPlant_h: ; 0x1e2ba to 0x1e2c6 (12 bytes) (bank=7) (id=83)
|
PowerPlant_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db POWER_PLANT_HEIGHT, POWER_PLANT_WIDTH ; dimensions (y, x)
|
db POWER_PLANT_HEIGHT, POWER_PLANT_WIDTH ; dimensions (y, x)
|
||||||
dw PowerPlantBlocks, PowerPlantTextPointers, PowerPlantScript ; blocks, texts, scripts
|
dw PowerPlantBlocks, PowerPlantTextPointers, PowerPlantScript ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
RocketHideout1_h: ; 0x44bbe to 0x44bca (12 bytes) (bank=11) (id=199)
|
RocketHideout1_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db ROCKET_HIDEOUT_1_HEIGHT, ROCKET_HIDEOUT_1_WIDTH ; dimensions (y, x)
|
db ROCKET_HIDEOUT_1_HEIGHT, ROCKET_HIDEOUT_1_WIDTH ; dimensions (y, x)
|
||||||
dw RocketHideout1Blocks, RocketHideout1TextPointers, RocketHideout1Script ; blocks, texts, scripts
|
dw RocketHideout1Blocks, RocketHideout1TextPointers, RocketHideout1Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
RocketHideout2_h: ; 0x44e1b to 0x44e27 (12 bytes) (bank=11) (id=200)
|
RocketHideout2_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db ROCKET_HIDEOUT_2_HEIGHT, ROCKET_HIDEOUT_2_WIDTH ; dimensions (y, x)
|
db ROCKET_HIDEOUT_2_HEIGHT, ROCKET_HIDEOUT_2_WIDTH ; dimensions (y, x)
|
||||||
dw RocketHideout2Blocks, RocketHideout2TextPointers, RocketHideout2Script ; blocks, texts, scripts
|
dw RocketHideout2Blocks, RocketHideout2TextPointers, RocketHideout2Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
RocketHideout3_h: ; 0x45219 to 0x45225 (12 bytes) (bank=11) (id=201)
|
RocketHideout3_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db ROCKET_HIDEOUT_3_HEIGHT, ROCKET_HIDEOUT_3_WIDTH ; dimensions (y, x)
|
db ROCKET_HIDEOUT_3_HEIGHT, ROCKET_HIDEOUT_3_WIDTH ; dimensions (y, x)
|
||||||
dw RocketHideout3Blocks, RocketHideout3TextPointers, RocketHideout3Script ; blocks, texts, scripts
|
dw RocketHideout3Blocks, RocketHideout3TextPointers, RocketHideout3Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
RocketHideout4_h: ; 0x45451 to 0x4545d (12 bytes) (bank=11) (id=202)
|
RocketHideout4_h:
|
||||||
db FACILITY ; tileset
|
db FACILITY ; tileset
|
||||||
db ROCKET_HIDEOUT_4_HEIGHT, ROCKET_HIDEOUT_4_WIDTH ; dimensions (y, x)
|
db ROCKET_HIDEOUT_4_HEIGHT, ROCKET_HIDEOUT_4_WIDTH ; dimensions (y, x)
|
||||||
dw RocketHideout4Blocks, RocketHideout4TextPointers, RocketHideout4Script ; blocks, texts, scripts
|
dw RocketHideout4Blocks, RocketHideout4TextPointers, RocketHideout4Script ; blocks, texts, scripts
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue