1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

Added the mouse_stddrv variable for the C64 and C128.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4149 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-09-11 16:51:21 +00:00
parent d74f9ab396
commit 7c2823e780
4 changed files with 32 additions and 0 deletions

View File

@ -60,6 +60,7 @@ OBJS = _scrsize.o \
kernal.o \
mainargs.o \
mcbdefault.o \
mouse_stddrv.o \
randomize.o \
revers.o \
slow.o \

View File

@ -0,0 +1,15 @@
;
; Name of the standard mouse driver
;
; Ullrich von Bassewitz, 2009-09-11
;
; const char mouse_stddrv[];
;
.export _mouse_stddrv
.rodata
_mouse_stddrv: .asciiz "c128-1351.mou"

View File

@ -60,6 +60,7 @@ OBJS = _scrsize.o \
kernal.o \
mainargs.o \
mcbdefault.o \
mouse_stddrv.o \
randomize.o \
revers.o \
systime.o \

15
libsrc/c64/mouse_stddrv.s Normal file
View File

@ -0,0 +1,15 @@
;
; Name of the standard mouse driver
;
; Ullrich von Bassewitz, 2009-09-11
;
; const char mouse_stddrv[];
;
.export _mouse_stddrv
.rodata
_mouse_stddrv: .asciiz "c64-1351.mou"