21 lines
275 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
DelayFrame::
2013-09-03 17:36:55 -04:00
; Wait for one frame
ld a, 1
2023-09-30 19:12:57 +02:00
ldh [hVBlankOccurred], a
2013-09-03 17:36:55 -04:00
; Wait for the next VBlank, halting to conserve battery
.halt
2022-10-02 22:03:53 -04:00
halt
nop
2023-09-30 19:12:57 +02:00
ldh a, [hVBlankOccurred]
2013-09-03 17:36:55 -04:00
and a
jr nz, .halt
ret
2018-06-24 16:09:41 +02:00
DelayFrames::
2013-09-03 17:36:55 -04:00
; Wait c frames
call DelayFrame
dec c
jr nz, DelayFrames
ret