1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00
cc65/libsrc/vic20/waitvsync.s

17 lines
220 B
ArmAsm
Raw Normal View History

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