]> git.sur5r.net Git - cc65/blob - libsrc/atari/joy_stat_stddrv.s
Fixed _textcolor definition.
[cc65] / libsrc / atari / joy_stat_stddrv.s
1 ;
2 ; Address of the static standard joystick driver
3 ;
4 ; Oliver Schmidt, 2012-11-01
5 ;
6 ; const void joy_static_stddrv[];
7 ;
8
9         .export _joy_static_stddrv
10         .ifdef  __ATARIXL__
11         .import _atrxstd_joy
12         .else
13         .import _atrstd_joy
14         .endif
15
16 .rodata
17
18         .ifdef  __ATARIXL__
19 _joy_static_stddrv := _atrxstd_joy
20         .else
21 _joy_static_stddrv := _atrstd_joy
22         .endif