]> git.sur5r.net Git - cc65/blob - libsrc/vic20/waitvsync.s
Add sample linker configurations for Atari binary output in C.
[cc65] / libsrc / vic20 / waitvsync.s
1 ;
2 ; Written by Groepaz <groepaz@gmx.net>
3 ;
4 ; void waitvsync (void);
5 ;
6
7         .export         _waitvsync
8
9         .include        "vic20.inc"
10
11 _waitvsync:
12 @l2:
13         lda     VIC_HLINE
14         bne     @l2
15         rts
16