mirror of
https://github.com/cc65/cc65.git
synced 2025-01-13 09:31:53 +00:00
Adjusted Apple2 targets to the new standard mouse driver paradigm.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4154 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7de61e351c
commit
c8e1d7e0d2
@ -84,6 +84,7 @@ S_OBJS= _scrsize.o \
|
||||
mainargs.o \
|
||||
mcbdefault.o \
|
||||
mli.o \
|
||||
mouse_stddrv.o \
|
||||
open.o \
|
||||
oserrlist.o \
|
||||
oserror.o \
|
||||
|
18
libsrc/apple2/mouse_stddrv.s
Normal file
18
libsrc/apple2/mouse_stddrv.s
Normal file
@ -0,0 +1,18 @@
|
||||
;
|
||||
; Name of the standard mouse driver
|
||||
;
|
||||
; Ullrich von Bassewitz, 2009-09-11
|
||||
;
|
||||
; const char mouse_stddrv[];
|
||||
;
|
||||
|
||||
.export _mouse_stddrv
|
||||
|
||||
.rodata
|
||||
|
||||
_mouse_stddrv:
|
||||
.ifdef __APPLE2ENH__
|
||||
.asciiz "A2E.STDMOU.MOU"
|
||||
.else
|
||||
.asciiz "A2.STDMOU.MOU"
|
||||
.endif
|
@ -84,6 +84,7 @@ S_OBJS= _scrsize.o \
|
||||
mainargs.o \
|
||||
mcbdefault.o \
|
||||
mli.o \
|
||||
mouse_stddrv.o \
|
||||
open.o \
|
||||
oserrlist.o \
|
||||
oserror.o \
|
||||
|
Loading…
x
Reference in New Issue
Block a user