1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/vic20/waitvsync.s

17 lines
220 B
ArmAsm
Raw Permalink Normal View History

2017-07-17 23:04:53 +00:00
;
; Written by Groepaz <groepaz@gmx.net>
;
; void waitvsync (void);
;
2017-07-17 21:15:05 +00:00
.export _waitvsync
2016-02-28 21:35:46 +00:00
.include "vic20.inc"
2017-07-17 21:15:05 +00:00
_waitvsync:
2016-02-28 21:35:46 +00:00
@l2:
2017-07-17 23:06:20 +00:00
lda VIC_HLINE
bne @l2
2016-02-28 21:35:46 +00:00
rts