1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

use ST mouse as static standard driver, too

This commit is contained in:
Christian Groessler 2014-01-11 01:33:59 +01:00
parent c22b91e3c3
commit c78d7a82fb

View File

@ -8,15 +8,15 @@
.export _mouse_static_stddrv .export _mouse_static_stddrv
.ifdef __ATARIXL__ .ifdef __ATARIXL__
.import _atrxjoy_mou .import _atrxst_mou
.else .else
.import _atrjoy_mou .import _atrst_mou
.endif .endif
.rodata .rodata
.ifdef __ATARIXL__ .ifdef __ATARIXL__
_mouse_static_stddrv := _atrxjoy_mou _mouse_static_stddrv := _atrxst_mou
.else .else
_mouse_static_stddrv := _atrjoy_mou _mouse_static_stddrv := _atrst_mou
.endif .endif