]> git.sur5r.net Git - cc65/commitdiff
Added missing standard driver definitions.
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 1 Nov 2012 15:58:27 +0000 (15:58 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 1 Nov 2012 15:58:27 +0000 (15:58 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5890 b7a2c559-68d2-44c3-8de9-860c34a00d81

12 files changed:
libsrc/atmos/Makefile
libsrc/atmos/joy_stddrv.s [new file with mode: 0644]
libsrc/atmos/tgi_stddrv.s [new file with mode: 0644]
libsrc/cbm510/Makefile
libsrc/cbm510/joy_stddrv.s [new file with mode: 0644]
libsrc/lynx/Makefile
libsrc/lynx/joy_stddrv.s [new file with mode: 0644]
libsrc/lynx/tgi_stddrv.s [new file with mode: 0644]
libsrc/nes/Makefile
libsrc/nes/joy_stddrv.s [new file with mode: 0644]
libsrc/nes/tgi_stddrv.s [new file with mode: 0644]
libsrc/pet/Makefile

index 91deda3a39554e93879cf1d4eae5b92e091daedb..c9d2e76f65f2a93b141bcb3f44e2afb12b531cd0 100644 (file)
@@ -81,6 +81,7 @@ OBJS  =       _scrsize.o              \
         gotox.o                 \
         gotoxy.o                \
         gotoy.o                 \
+        joy_stddrv.o            \
         kbhit.o                 \
         mainargs.o              \
         oserrlist.o             \
@@ -90,6 +91,7 @@ OBJS  =       _scrsize.o              \
         systime.o               \
         sysuname.o              \
         tgi_colors.o            \
+        tgi_stddrv.o            \
         wherex.o                \
         wherey.o                \
         write.o                 \
diff --git a/libsrc/atmos/joy_stddrv.s b/libsrc/atmos/joy_stddrv.s
new file mode 100644 (file)
index 0000000..77c9e0e
--- /dev/null
@@ -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 "atmos-pase.joy"
diff --git a/libsrc/atmos/tgi_stddrv.s b/libsrc/atmos/tgi_stddrv.s
new file mode 100644 (file)
index 0000000..905380b
--- /dev/null
@@ -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 "atmos-240-200-2.tgi"
index bd77258dac5698a4d973fd59bb0ca66ac88dbd69..2c497322e68db0f4ff425960fd2a9483779eaf84 100644 (file)
@@ -68,6 +68,7 @@ OBJS =        _scrsize.o              \
         crt0.o                  \
         devnum.o                \
         extzp.o                 \
+        joy_stddrv.o            \
         kbhit.o                 \
         kclose.o                \
         kernal.o                \
diff --git a/libsrc/cbm510/joy_stddrv.s b/libsrc/cbm510/joy_stddrv.s
new file mode 100644 (file)
index 0000000..dc7d30f
--- /dev/null
@@ -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 "cbm510-std.joy"
index 290bd58e392690eb9549afa8dc86f4bb1e063790..96ec92c04007688152a890af7421617de48c317e 100644 (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)     \
diff --git a/libsrc/lynx/joy_stddrv.s b/libsrc/lynx/joy_stddrv.s
new file mode 100644 (file)
index 0000000..eadc44d
--- /dev/null
@@ -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"
diff --git a/libsrc/lynx/tgi_stddrv.s b/libsrc/lynx/tgi_stddrv.s
new file mode 100644 (file)
index 0000000..a410e03
--- /dev/null
@@ -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"
index 6e3f98d2f9dce7d75b294b7e11f93711d8b265c9..d1e2350fed60ce865435d11595c76bc6da564c8c 100644 (file)
@@ -79,6 +79,7 @@ OBJS =  _scrsize.o              \
         gotox.o                 \
         gotoxy.o                \
         gotoy.o                 \
+        joy_stddrv.o            \
         mainargs.o              \
         ppu.o                   \
         ppubuf.o                \
@@ -87,6 +88,7 @@ OBJS =  _scrsize.o              \
         setcursor.o             \
         sysuname.o              \
         tgi_colors.o            \
+        tgi_stddrv.o            \
         waitvblank.o            \
         wherex.o                \
         wherey.o                \
diff --git a/libsrc/nes/joy_stddrv.s b/libsrc/nes/joy_stddrv.s
new file mode 100644 (file)
index 0000000..4f820aa
--- /dev/null
@@ -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 "nes-stdjoy.joy"
diff --git a/libsrc/nes/tgi_stddrv.s b/libsrc/nes/tgi_stddrv.s
new file mode 100644 (file)
index 0000000..25f00f8
--- /dev/null
@@ -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 "nes-64-56-2.tgi"
index 56e699c0b19d8256172837d405b95fdfb7073585..7835b1fec48588dbb6c6fdbce1a190882bbd6cf6 100644 (file)
@@ -62,6 +62,7 @@ OBJS =        _scrsize.o              \
         crt0.o                  \
         devnum.o                \
         get_tv.o                \
+        joy_stddrv.o            \
         kbhit.o                 \
         kbsout.o                \
         kchkin.o                \