mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
17 lines
220 B
ArmAsm
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
|
|
|