pokecrystal-board/home/delay.asm

21 lines
273 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
DelayFrame::
2013-09-03 14:36:55 -07:00
; Wait for one frame
ld a, 1
2018-01-23 14:39:09 -08:00
ld [wVBlankOccurred], a
2013-09-03 14:36:55 -07:00
; Wait for the next VBlank, halting to conserve battery
.halt
2022-10-02 19:03:53 -07:00
halt
nop
2018-01-23 14:39:09 -08:00
ld a, [wVBlankOccurred]
2013-09-03 14:36:55 -07:00
and a
jr nz, .halt
ret
2018-06-24 07:09:41 -07:00
DelayFrames::
2013-09-03 14:36:55 -07:00
; Wait c frames
call DelayFrame
dec c
jr nz, DelayFrames
ret