]> git.sur5r.net Git - cc65/blob - libsrc/apple2/mouse_stat_stddrv.s
Adds test code for the Atari (xex) linker file format.
[cc65] / libsrc / apple2 / mouse_stat_stddrv.s
1 ;
2 ; Address of the static standard mouse driver
3 ;
4 ; Oliver Schmidt, 2012-11-01
5 ;
6 ; const void mouse_static_stddrv[];
7 ;
8
9         .export _mouse_static_stddrv
10         .ifdef  __APPLE2ENH__
11         .import _a2e_stdmou_mou
12         .else
13         .import _a2_stdmou_mou
14         .endif
15
16 .rodata
17
18         .ifdef  __APPLE2ENH__
19 _mouse_static_stddrv := _a2e_stdmou_mou
20         .else
21 _mouse_static_stddrv := _a2_stdmou_mou
22         .endif