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