mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
23 lines
412 B
ArmAsm
23 lines
412 B
ArmAsm
;
|
|
; Address of the static standard mouse driver
|
|
;
|
|
; Christian Groessler, 2014-01-02
|
|
;
|
|
; const void mouse_static_stddrv[];
|
|
;
|
|
|
|
.export _mouse_static_stddrv
|
|
.ifdef __ATARIXL__
|
|
.import _atrxst_mou
|
|
.else
|
|
.import _atrst_mou
|
|
.endif
|
|
|
|
.rodata
|
|
|
|
.ifdef __ATARIXL__
|
|
_mouse_static_stddrv := _atrxst_mou
|
|
.else
|
|
_mouse_static_stddrv := _atrst_mou
|
|
.endif
|