20 lines
322 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
2018-01-23 17:39:09 -05:00
ld [wVBlankOccurred], a
2013-09-03 17:36:55 -04:00
; Wait for the next VBlank, halting to conserve battery
.halt
halt ; rgbasm adds a nop after this instruction by default
2018-01-23 17:39:09 -05:00
ld a, [wVBlankOccurred]
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