mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
14 lines
229 B
ArmAsm
14 lines
229 B
ArmAsm
;
|
|
; Christian Groessler, 2014-04-22
|
|
;
|
|
|
|
.export mouse_libref
|
|
|
|
.ifdef __ATARIXL__
|
|
.import set_VTIMR1_handler
|
|
mouse_libref := set_VTIMR1_handler
|
|
.else
|
|
.import _exit
|
|
mouse_libref := _exit
|
|
.endif
|