1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/pce/waitvsync.s
2018-08-30 11:48:46 +02:00

19 lines
332 B
ArmAsm

;
; Written by Groepaz <groepaz@gmx.net>
;
; void waitvsync (void);
;
.export _waitvsync
.forceimport ticktock ; make sure that tickcount changes
.include "extzp.inc"
.proc _waitvsync
lda tickcount
@lp: cmp tickcount
beq @lp
rts
.endproc