Added missing standard driver definitions.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5890 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2012-11-01 15:58:27 +00:00
parent 1bba8355da
commit dbc66c247a
12 changed files with 99 additions and 0 deletions

View File

@@ -79,6 +79,7 @@ OBJS = bllhdr.o \
exec.o \
exehdr.o \
extzp.o \
joy_stddrv.o \
kbhit.o \
load.o \
lseek.o \
@@ -89,6 +90,7 @@ OBJS = bllhdr.o \
read.o \
sysuname.o \
tgi_colors.o \
tgi_stddrv.o \
toascii.o \
uploader.o \
$(EMDS:.emd=-emd.o) \

13
libsrc/lynx/joy_stddrv.s Normal file
View File

@@ -0,0 +1,13 @@
;
; Name of the standard joystick driver
;
; Oliver Schmidt, 2012-11-01
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "lynx-stdjoy.joy"

13
libsrc/lynx/tgi_stddrv.s Normal file
View File

@@ -0,0 +1,13 @@
;
; Name of the standard tgi driver
;
; Oliver Schmidt, 2012-11-01
;
; const char tgi_stddrv[];
;
.export _tgi_stddrv
.rodata
_tgi_stddrv: .asciiz "lynx-160-102-16.tgi"