mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
16 lines
245 B
ArmAsm
16 lines
245 B
ArmAsm
;
|
|
; Written by Robin Harbron, requires 12" monitor
|
|
;
|
|
; void waitvsync (void);
|
|
;
|
|
|
|
.export _waitvsync
|
|
|
|
.include "pet.inc"
|
|
|
|
_waitvsync:
|
|
lda #%00100000
|
|
: and VIA_PB
|
|
bne :-
|
|
rts
|