2012-11-01 19:53:47 +00:00
|
|
|
;
|
|
|
|
; Address of the static standard joystick driver
|
|
|
|
;
|
|
|
|
; Oliver Schmidt, 2012-11-01
|
|
|
|
;
|
|
|
|
; const void joy_static_stddrv[];
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _joy_static_stddrv
|
|
|
|
.ifdef __APPLE2ENH__
|
|
|
|
.import _a2e_stdjoy_joy
|
2013-05-04 20:15:30 +00:00
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
.import _a2_stdjoy_joy
|
2013-05-04 20:15:30 +00:00
|
|
|
.endif
|
2012-11-01 19:53:47 +00:00
|
|
|
|
|
|
|
.rodata
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.ifdef __APPLE2ENH__
|
2013-05-04 20:15:30 +00:00
|
|
|
_joy_static_stddrv := _a2e_stdjoy_joy
|
|
|
|
.else
|
|
|
|
_joy_static_stddrv := _a2_stdjoy_joy
|
|
|
|
.endif
|