mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
23 lines
406 B
ArmAsm
23 lines
406 B
ArmAsm
;
|
|
; Address of the static standard joystick driver
|
|
;
|
|
; Oliver Schmidt, 2012-11-01
|
|
;
|
|
; const void joy_static_stddrv[];
|
|
;
|
|
|
|
.export _joy_static_stddrv
|
|
.ifdef __ATARIXL__
|
|
.import _atrxstd_joy
|
|
.else
|
|
.import _atrstd_joy
|
|
.endif
|
|
|
|
.rodata
|
|
|
|
.ifdef __ATARIXL__
|
|
_joy_static_stddrv := _atrxstd_joy
|
|
.else
|
|
_joy_static_stddrv := _atrstd_joy
|
|
.endif
|