1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-26 13:18:31 +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:
ol.sc
2012-11-01 19:53:47 +00:00
parent dbc66c247a
commit 6860ac7dfd
38 changed files with 342 additions and 0 deletions
+3
View File
@@ -105,11 +105,13 @@ S_OBJS= _scrsize.o \
initcwd.o \
iobuf.o \
isdevice.o \
joy_stat_stddrv.o \
joy_stddrv.o \
kbhit.o \
mainargs.o \
mcbdefault.o \
mli.o \
mouse_stat_stddrv.o \
mouse_stddrv.o \
open.o \
oserrlist.o \
@@ -128,6 +130,7 @@ S_OBJS= _scrsize.o \
systime.o \
sysuname.o \
tgi_colors.o \
tgi_stat_stddrv.o \
tgi_stddrv.o \
toascii.o \
vtabz.o \
+14
View 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 _apple2_stdjoy
.rodata
_joy_static_stddrv := _apple2_stdjoy
+14
View File
@@ -0,0 +1,14 @@
;
; Address of the static standard mouse driver
;
; Oliver Schmidt, 2012-11-01
;
; const void mouse_static_stddrv[];
;
.export _mouse_static_stddrv
.import _apple2_stdmou
.rodata
_mouse_static_stddrv := _apple2_stdmou
+14
View 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 _apple2_280_192_8
.rodata
_tgi_static_stddrv := _apple2_280_192_8