Introduced static standard drivers.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5891 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -81,6 +81,7 @@ OBJS = _scrsize.o \
|
||||
gotox.o \
|
||||
gotoxy.o \
|
||||
gotoy.o \
|
||||
joy_stat_stddrv.o \
|
||||
joy_stddrv.o \
|
||||
kbhit.o \
|
||||
mainargs.o \
|
||||
@@ -91,6 +92,7 @@ OBJS = _scrsize.o \
|
||||
systime.o \
|
||||
sysuname.o \
|
||||
tgi_colors.o \
|
||||
tgi_stat_stddrv.o \
|
||||
tgi_stddrv.o \
|
||||
wherex.o \
|
||||
wherey.o \
|
||||
|
||||
14
libsrc/atmos/joy_stat_stddrv.s
Normal file
14
libsrc/atmos/joy_stat_stddrv.s
Normal file
@@ -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 _atmos_pase
|
||||
|
||||
.rodata
|
||||
|
||||
_joy_static_stddrv := _atmos_pase
|
||||
14
libsrc/atmos/tgi_stat_stddrv.s
Normal file
14
libsrc/atmos/tgi_stat_stddrv.s
Normal file
@@ -0,0 +1,14 @@
|
||||
;
|
||||
; Address of the static standard tgi driver
|
||||
;
|
||||
; Oliver Schmidt, 2012-11-01
|
||||
;
|
||||
; const void tgi_static_stddrv[];
|
||||
;
|
||||
|
||||
.export _tgi_static_stddrv
|
||||
.import _atmos_240_200_2
|
||||
|
||||
.rodata
|
||||
|
||||
_tgi_static_stddrv := _atmos_240_200_2
|
||||
Reference in New Issue
Block a user