pokecrystal-board/home/vblank.asm

422 lines
5.3 KiB
NASM
Raw Normal View History

2013-02-05 12:33:57 -08:00
; VBlank is the interrupt responsible for updating VRAM.
; In Pokemon Crystal, VBlank has been hijacked to act as the
; main loop. After time-sensitive graphics operations have been
; performed, joypad input and sound functions are executed.
; This prevents the display and audio output from lagging.
2018-06-24 07:09:41 -07:00
VBlank::
2013-02-05 12:33:57 -08:00
push af
push bc
push de
push hl
2015-01-19 21:31:29 -08:00
ldh a, [hVBlank]
2015-01-19 21:31:29 -08:00
and 7
2013-02-05 12:33:57 -08:00
ld e, a
2015-01-19 21:31:29 -08:00
ld d, 0
2013-02-05 12:33:57 -08:00
ld hl, .VBlanks
add hl, de
add hl, de
2013-02-05 12:33:57 -08:00
ld a, [hli]
ld h, [hl]
ld l, a
2015-01-19 21:31:29 -08:00
call _hl_
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call GameTimer
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
pop hl
pop de
pop bc
pop af
reti
2018-06-24 07:09:41 -07:00
.VBlanks:
2015-01-19 21:31:29 -08:00
dw VBlank0
dw VBlank1
dw VBlank2
dw VBlank3
dw VBlank4
dw VBlank5
dw VBlank6
dw VBlank0 ; just in case
2013-02-05 12:33:57 -08:00
2018-06-24 07:09:41 -07:00
VBlank0::
2013-02-05 12:33:57 -08:00
; normal operation
; rng
; scx, scy, wy, wx
; bg map buffer
; palettes
; dma transfer
; bg map
; tiles
; oam
; joypad
; sound
2015-01-19 21:31:29 -08:00
; inc frame counter
ld hl, hVBlankCounter
2013-02-05 12:33:57 -08:00
inc [hl]
2015-01-19 21:31:29 -08:00
; advance random variables
ldh a, [rDIV]
2013-02-05 12:33:57 -08:00
ld b, a
ldh a, [hRandomAdd]
2013-02-05 12:33:57 -08:00
adc b
ldh [hRandomAdd], a
2015-01-19 21:31:29 -08:00
ldh a, [rDIV]
2013-02-05 12:33:57 -08:00
ld b, a
ldh a, [hRandomSub]
2013-02-05 12:33:57 -08:00
sbc b
ldh [hRandomSub], a
2015-01-19 21:31:29 -08:00
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
ldh a, [hSCX]
ldh [rSCX], a
ldh a, [hSCY]
ldh [rSCY], a
ldh a, [hWY]
ldh [rWY], a
ldh a, [hWX]
ldh [rWX], a
2015-01-19 21:31:29 -08:00
; There's only time to call one of these in one vblank.
; Calls are in order of priority.
2013-02-05 12:33:57 -08:00
call UpdateBGMapBuffer
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call UpdatePalsIfCGB
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call DMATransfer
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call UpdateBGMap
2015-01-19 21:31:29 -08:00
; These have their own timing checks.
call Serve2bppRequest
call Serve1bppRequest
call AnimateTileset
2015-01-19 21:31:29 -08:00
.done
ldh a, [hOAMUpdate]
2013-02-05 12:33:57 -08:00
and a
2015-01-19 21:31:29 -08:00
jr nz, .done_oam
call hTransferShadowOAM
2015-01-19 21:31:29 -08:00
.done_oam
; vblank-sensitive operations are done
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
2018-01-23 14:39:09 -08:00
ld a, [wOverworldDelay]
2013-02-05 12:33:57 -08:00
and a
2015-01-19 21:31:29 -08:00
jr z, .ok
2013-02-05 12:33:57 -08:00
dec a
2018-01-23 14:39:09 -08:00
ld [wOverworldDelay], a
2015-01-19 21:31:29 -08:00
.ok
2018-01-23 14:39:09 -08:00
ld a, [wTextDelayFrames]
2013-02-05 12:33:57 -08:00
and a
2015-01-19 21:31:29 -08:00
jr z, .ok2
2013-02-05 12:33:57 -08:00
dec a
2018-01-23 14:39:09 -08:00
ld [wTextDelayFrames], a
2015-01-19 21:31:29 -08:00
.ok2
call UpdateJoypad
2015-01-19 21:31:29 -08:00
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
ldh a, [hROMBankBackup]
2015-01-19 21:31:29 -08:00
rst Bankswitch
ldh a, [hSeconds]
ldh [hUnusedBackup], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
ret
2018-06-24 07:09:41 -07:00
VBlank2::
2013-02-05 12:33:57 -08:00
; sound only
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
2015-01-19 21:31:29 -08:00
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2013-02-05 12:33:57 -08:00
ret
2018-06-24 07:09:41 -07:00
VBlank1::
2013-02-05 12:33:57 -08:00
; scx, scy
; palettes
; bg map
; tiles
; oam
; sound / lcd stat
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
ldh a, [hSCX]
ldh [rSCX], a
ldh a, [hSCY]
ldh [rSCY], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call UpdatePals
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call UpdateBGMap
call Serve2bppRequest_VBlank
2015-01-19 21:31:29 -08:00
call hTransferShadowOAM
2015-01-19 21:31:29 -08:00
2020-06-16 12:49:32 -07:00
.done
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
; get requested ints
ldh a, [rIF]
2013-02-05 12:33:57 -08:00
ld b, a
2015-01-19 21:31:29 -08:00
; discard requested ints
2013-02-05 12:33:57 -08:00
xor a
ldh [rIF], a
2015-01-19 21:31:29 -08:00
; enable lcd stat
2019-05-05 09:14:46 -07:00
ld a, 1 << LCD_STAT
ldh [rIE], a
2015-01-19 21:31:29 -08:00
; rerequest serial int if applicable (still disabled)
; request lcd stat
2013-02-05 12:33:57 -08:00
ld a, b
2019-05-05 09:14:46 -07:00
and 1 << SERIAL
or 1 << LCD_STAT
ldh [rIF], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
ei
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
di
2015-01-19 21:31:29 -08:00
; get requested ints
ldh a, [rIF]
2013-02-05 12:33:57 -08:00
ld b, a
2015-01-19 21:31:29 -08:00
; discard requested ints
2013-02-05 12:33:57 -08:00
xor a
ldh [rIF], a
2015-01-19 21:31:29 -08:00
; enable ints besides joypad
2019-05-05 09:14:46 -07:00
ld a, IE_DEFAULT
ldh [rIE], a
2015-01-19 21:31:29 -08:00
; rerequest ints
2013-02-05 12:33:57 -08:00
ld a, b
ldh [rIF], a
2013-02-05 12:33:57 -08:00
ret
2018-06-24 07:09:41 -07:00
UpdatePals::
2013-02-05 12:33:57 -08:00
; update pals for either dmg or cgb
ldh a, [hCGB]
2013-02-05 12:33:57 -08:00
and a
jp nz, UpdateCGBPals
2015-01-19 21:31:29 -08:00
; update gb pals
2015-12-23 11:00:29 -08:00
ld a, [wBGP]
ldh [rBGP], a
2015-12-23 11:00:29 -08:00
ld a, [wOBP0]
ldh [rOBP0], a
2015-12-23 11:00:29 -08:00
ld a, [wOBP1]
ldh [rOBP1], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
and a
ret
2018-06-24 07:09:41 -07:00
VBlank3::
2013-02-05 12:33:57 -08:00
; scx, scy
; palettes
; bg map
; tiles
; oam
; sound / lcd stat
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
ldh a, [hSCX]
ldh [rSCX], a
ldh a, [hSCY]
ldh [rSCY], a
2015-01-19 21:31:29 -08:00
ldh a, [hCGBPalUpdate]
2013-02-05 12:33:57 -08:00
and a
call nz, ForceUpdateCGBPals
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call UpdateBGMap
call Serve2bppRequest_VBlank
2015-01-19 21:31:29 -08:00
call hTransferShadowOAM
2015-01-19 21:31:29 -08:00
.done
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
ldh a, [rIF]
2013-02-05 12:33:57 -08:00
push af
xor a
ldh [rIF], a
2019-05-05 09:14:46 -07:00
ld a, 1 << LCD_STAT
ldh [rIE], a
ldh [rIF], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
ei
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
di
2015-01-19 21:31:29 -08:00
; request lcdstat
ldh a, [rIF]
2013-02-05 12:33:57 -08:00
ld b, a
2015-01-19 21:31:29 -08:00
; and any other ints
2013-02-05 12:33:57 -08:00
pop af
or b
ld b, a
2015-01-19 21:31:29 -08:00
; reset ints
2013-02-05 12:33:57 -08:00
xor a
ldh [rIF], a
2015-01-19 21:31:29 -08:00
; enable ints besides joypad
2019-05-05 09:14:46 -07:00
ld a, IE_DEFAULT
ldh [rIE], a
2015-01-19 21:31:29 -08:00
; request ints
2013-02-05 12:33:57 -08:00
ld a, b
ldh [rIF], a
2013-02-05 12:33:57 -08:00
ret
2018-06-24 07:09:41 -07:00
VBlank4::
2013-02-05 12:33:57 -08:00
; bg map
; tiles
; oam
; joypad
; serial
; sound
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call UpdateBGMap
call Serve2bppRequest
2015-01-19 21:31:29 -08:00
call hTransferShadowOAM
2015-01-19 21:31:29 -08:00
call UpdateJoypad
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call AskSerial
2015-01-19 21:31:29 -08:00
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
2015-01-19 21:31:29 -08:00
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
ret
2018-06-24 07:09:41 -07:00
VBlank5::
2013-02-05 12:33:57 -08:00
; scx
; palettes
; bg map
; tiles
; joypad
;
2013-02-05 12:33:57 -08:00
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
ldh a, [hSCX]
ldh [rSCX], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call UpdatePalsIfCGB
2015-01-19 21:31:29 -08:00
jr c, .done
2013-02-05 12:33:57 -08:00
call UpdateBGMap
call Serve2bppRequest
2015-01-19 21:31:29 -08:00
.done
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
call UpdateJoypad
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
xor a
ldh [rIF], a
2019-05-05 09:14:46 -07:00
ld a, 1 << LCD_STAT
ldh [rIE], a
2015-01-19 21:31:29 -08:00
; request lcd stat
ldh [rIF], a
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
ei
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
di
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
xor a
ldh [rIF], a
2015-01-19 21:31:29 -08:00
; enable ints besides joypad
2019-05-05 09:14:46 -07:00
ld a, IE_DEFAULT
ldh [rIE], a
2013-02-05 12:33:57 -08:00
ret
2018-06-24 07:09:41 -07:00
VBlank6::
2013-02-05 12:33:57 -08:00
; palettes
; tiles
; dma transfer
; sound
ldh a, [hROMBank]
ldh [hROMBankBackup], a
2015-01-19 21:31:29 -08:00
; inc frame counter
ld hl, hVBlankCounter
2013-02-05 12:33:57 -08:00
inc [hl]
2015-01-19 21:31:29 -08:00
2013-02-05 12:33:57 -08:00
call UpdateCGBPals
2015-01-19 21:31:29 -08:00
jr c, .done
call Serve2bppRequest
call Serve1bppRequest
2013-02-05 12:33:57 -08:00
call DMATransfer
2015-01-19 21:31:29 -08:00
.done
2013-02-05 12:33:57 -08:00
xor a
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2015-01-19 21:31:29 -08:00
ld a, BANK(_UpdateSound)
2015-01-19 21:31:29 -08:00
rst Bankswitch
call _UpdateSound
2015-01-19 21:31:29 -08:00
ldh a, [hROMBankBackup]
2013-02-05 12:33:57 -08:00
rst Bankswitch
ret