1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00
cc65/libsrc/c64/waitvblank.s

14 lines
200 B
ArmAsm

.export _waitvblank
.include "c64.inc"
_waitvblank:
@l1:
bit VIC_CTRL1
bpl @l1
@l2:
bit VIC_CTRL1
bmi @l2
rts