mirror of
https://github.com/cc65/cc65.git
synced 2026-04-21 09:17:52 +00:00
Introduced static standard drivers.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5891 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -68,6 +68,7 @@ OBJS = _scrsize.o \
|
||||
crt0.o \
|
||||
devnum.o \
|
||||
get_tv.o \
|
||||
joy_stat_stddrv.o \
|
||||
joy_stddrv.o \
|
||||
kacptr.o \
|
||||
kbasin.o \
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
;
|
||||
; Address of the static standard joystick driver
|
||||
;
|
||||
; Oliver Schmidt, 2012-11-01
|
||||
;
|
||||
; const void joy_static_stddrv[];
|
||||
;
|
||||
|
||||
.export _joy_static_stddrv
|
||||
.import _plus4_stdjoy
|
||||
|
||||
.rodata
|
||||
|
||||
_joy_static_stddrv := _plus4_stdjoy
|
||||
Reference in New Issue
Block a user