mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
055c294ac0
This follows a suggestion by Sijmen Schouten in issue #818. Platoterm64 now works with mouse at 1200 baud. Bump MOUSE_API_VERSION in asminc/mouse-kernel.inc. Fix typo in testcode/lib/mouse-test.c.
14 lines
229 B
ArmAsm
14 lines
229 B
ArmAsm
;
|
|
; Christian Groessler, 2014-04-22
|
|
;
|
|
|
|
.export mouse_libref
|
|
|
|
.ifdef __ATARIXL__
|
|
.import set_VTIMR2_handler
|
|
mouse_libref := set_VTIMR2_handler
|
|
.else
|
|
.import _exit
|
|
mouse_libref := _exit
|
|
.endif
|