mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 04:04:49 +00:00
15 lines
237 B
ArmAsm
15 lines
237 B
ArmAsm
|
;
|
||
|
; Address of the static standard mouse driver
|
||
|
;
|
||
|
; Oliver Schmidt, 2012-11-01
|
||
|
;
|
||
|
; const void mouse_static_stddrv[];
|
||
|
;
|
||
|
|
||
|
.export _mouse_static_stddrv
|
||
|
.import _apple2_stdmou
|
||
|
|
||
|
.rodata
|
||
|
|
||
|
_mouse_static_stddrv := _apple2_stdmou
|