mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
18 lines
270 B
ArmAsm
18 lines
270 B
ArmAsm
;
|
|
; Written by Groepaz <groepaz@gmx.net>
|
|
;
|
|
; void waitvsync (void);
|
|
;
|
|
|
|
.export _waitvsync
|
|
|
|
.include "plus4.inc"
|
|
|
|
_waitvsync:
|
|
@l1:
|
|
lda TED_VLINEHI
|
|
and #$01
|
|
ora TED_VLINELO
|
|
bne @l1
|
|
rts
|