pokegold/home/delay.asm

21 lines
273 B
NASM
Raw Permalink Normal View History

DelayFrame::
; Wait for one frame
ld a, 1
ld [wVBlankOccurred], a
; Wait for the next VBlank, halting to conserve battery
.halt
2022-10-03 01:52:02 +00:00
halt
nop
ld a, [wVBlankOccurred]
and a
jr nz, .halt
ret
DelayFrames::
; Wait c frames
call DelayFrame
dec c
jr nz, DelayFrames
ret