mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
13 lines
200 B
ArmAsm
13 lines
200 B
ArmAsm
|
|
.export _waitvsync
|
|
|
|
.include "plus4.inc"
|
|
|
|
_waitvsync:
|
|
@l1:
|
|
lda TED_VLINEHI
|
|
and #$01
|
|
ora TED_VLINELO
|
|
bne @l1
|
|
rts
|