mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
16 lines
273 B
ArmAsm
16 lines
273 B
ArmAsm
;
|
|
; Written by Christian Groessler <chris@groessler.org>
|
|
;
|
|
; void waitvsync (void);
|
|
;
|
|
|
|
.include "atari5200.inc"
|
|
.export _waitvsync
|
|
|
|
.proc _waitvsync
|
|
lda RTCLOK+1
|
|
@lp: cmp RTCLOK+1
|
|
beq @lp
|
|
rts
|
|
.endproc
|