You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
more overworld wram labels
This commit is contained in:
@@ -146,12 +146,12 @@ VBlank0: ; 2b1
|
|||||||
xor a
|
xor a
|
||||||
ld [VBlankOccurred], a
|
ld [VBlankOccurred], a
|
||||||
|
|
||||||
; dec $cfb1 until 0
|
; dec OverworldDelay until 0
|
||||||
ld a, [$cfb1]
|
ld a, [OverworldDelay]
|
||||||
and a
|
and a
|
||||||
jr z, .textdelay
|
jr z, .textdelay
|
||||||
dec a
|
dec a
|
||||||
ld [$cfb1], a
|
ld [OverworldDelay], a
|
||||||
|
|
||||||
.textdelay
|
.textdelay
|
||||||
; dec text delay counter until 0
|
; dec text delay counter until 0
|
||||||
|
17
wram.asm
17
wram.asm
@@ -845,7 +845,9 @@ TileX: ; cf83
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
SECTION "VBlank",BSS[$cfb2]
|
SECTION "VBlank",BSS[$cfb1]
|
||||||
|
OverworldDelay: ; cfb1
|
||||||
|
ds 1
|
||||||
TextDelayFrames: ; cfb2
|
TextDelayFrames: ; cfb2
|
||||||
ds 1
|
ds 1
|
||||||
VBlankOccurred: ; cfb3
|
VBlankOccurred: ; cfb3
|
||||||
@@ -1086,7 +1088,12 @@ SECTION "UsedSprites",BSS[$d154]
|
|||||||
UsedSprites: ; d154
|
UsedSprites: ; d154
|
||||||
ds 32
|
ds 32
|
||||||
|
|
||||||
SECTION "connections",BSS[$d1a9]
|
SECTION "map",BSS[$d1a3]
|
||||||
|
|
||||||
|
MapEventBank: ; d1a3
|
||||||
|
ds 1
|
||||||
|
|
||||||
|
ds 5
|
||||||
|
|
||||||
MapConnections:
|
MapConnections:
|
||||||
|
|
||||||
@@ -1534,8 +1541,10 @@ SECTION "Scripting",BSS[$d434]
|
|||||||
ScriptFlags: ; d434
|
ScriptFlags: ; d434
|
||||||
SCRIPT_RUNNING EQU 2
|
SCRIPT_RUNNING EQU 2
|
||||||
ds 1
|
ds 1
|
||||||
|
ScriptFlags2: ; d435
|
||||||
ds 2
|
ds 1
|
||||||
|
ScriptFlags3: ; d436
|
||||||
|
ds 1
|
||||||
|
|
||||||
ScriptMode: ; d437
|
ScriptMode: ; d437
|
||||||
SCRIPT_OFF EQU 0
|
SCRIPT_OFF EQU 0
|
||||||
|
Reference in New Issue
Block a user