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 \ gotoxy.o \
graphics.o \ graphics.o \
graphuse.o \ graphuse.o \
joy_stddrv.o \
kbhit.o \ kbhit.o \
lseek.o \ lseek.o \
mouse.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 \ color.o \
cputc.o \ cputc.o \
get_tv.o \ get_tv.o \
joy_stddrv.o \
kbhit.o \ kbhit.o \
kernal.o \ kernal.o \
mouse.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 # Object files
OBJS = _scrsize.o \ OBJS = _scrsize.o \
break.o \ break.o \
cgetc.o \ cgetc.o \
clrscr.o \ clrscr.o \
color.o \ color.o \
conio.o \ conio.o \
cputc.o \ cputc.o \
crt0.o \ crt0.o \
get_tv.o \ get_tv.o \
kbhit.o \ joy_stddrv.o \
kbhit.o \
kernal.o \ kernal.o \
randomize.o \ randomize.o \
revers.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 \ conio.o \
cputc.o \ cputc.o \
get_tv.o \ get_tv.o \
joy_stddrv.o \
kbhit.o \ kbhit.o \
kernal.o \ kernal.o \
mouse.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 \ cputc.o \
crt0.o \ crt0.o \
get_tv.o \ get_tv.o \
joy_stddrv.o \
kacptr.o \ kacptr.o \
kbasin.o \ kbasin.o \
kbhit.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 \ color.o \
conio.o \ conio.o \
cputc.o \ cputc.o \
joy_stddrv.o \
kbhit.o \ kbhit.o \
kernal.o \ kernal.o \
kplot.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"