1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-14 00:32:08 +00:00
2017-07-18 01:06:20 +02:00

17 lines
220 B
ArmAsm

;
; Written by Groepaz <groepaz@gmx.net>
;
; void waitvsync (void);
;
.export _waitvsync
.include "vic20.inc"
_waitvsync:
@l2:
lda VIC_HLINE
bne @l2
rts