1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Added joy_stddrv modules

git-svn-id: svn://svn.cc65.org/cc65/trunk@1821 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-21 09:32:14 +00:00
parent 4e61ec9270
commit 69ac0ce1fc
12 changed files with 99 additions and 8 deletions

View File

@ -57,6 +57,7 @@ OBJS = _scrsize.o \
gotoxy.o \
graphics.o \
graphuse.o \
joy_stddrv.o \
kbhit.o \
lseek.o \
mouse.o \

15
libsrc/atari/joy_stddrv.s Normal file
View File

@ -0,0 +1,15 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "whatever.joy"

View File

@ -35,6 +35,7 @@ OBJS = _scrsize.o \
color.o \
cputc.o \
get_tv.o \
joy_stddrv.o \
kbhit.o \
kernal.o \
mouse.o \

14
libsrc/c128/joy_stddrv.s Normal file
View File

@ -0,0 +1,14 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "c128-stdjoy.joy"

View File

@ -26,16 +26,17 @@
#--------------------------------------------------------------------------
# Object files
OBJS = _scrsize.o \
break.o \
OBJS = _scrsize.o \
break.o \
cgetc.o \
clrscr.o \
color.o \
conio.o \
cputc.o \
crt0.o \
clrscr.o \
color.o \
conio.o \
cputc.o \
crt0.o \
get_tv.o \
kbhit.o \
joy_stddrv.o \
kbhit.o \
kernal.o \
randomize.o \
revers.o

14
libsrc/c16/joy_stddrv.s Normal file
View File

@ -0,0 +1,14 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "c16-stdjoy.joy"

View File

@ -36,6 +36,7 @@ OBJS = _scrsize.o \
conio.o \
cputc.o \
get_tv.o \
joy_stddrv.o \
kbhit.o \
kernal.o \
mouse.o \

14
libsrc/c64/joy_stddrv.s Normal file
View File

@ -0,0 +1,14 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "c64-stdjoy.joy"

View File

@ -35,6 +35,7 @@ OBJS = _scrsize.o \
cputc.o \
crt0.o \
get_tv.o \
joy_stddrv.o \
kacptr.o \
kbasin.o \
kbhit.o \

14
libsrc/plus4/joy_stddrv.s Normal file
View File

@ -0,0 +1,14 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "plus4-stdjoy.joy"

View File

@ -34,6 +34,7 @@ OBJS = _scrsize.o \
color.o \
conio.o \
cputc.o \
joy_stddrv.o \
kbhit.o \
kernal.o \
kplot.o \

14
libsrc/vic20/joy_stddrv.s Normal file
View File

@ -0,0 +1,14 @@
;
; Name of the standard joystick driver
;
; Ullrich von Bassewitz, 2002-12-21
;
; const char joy_stddrv[];
;
.export _joy_stddrv
.rodata
_joy_stddrv: .asciiz "vic20-stdjoy.joy"