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:
ol.sc 2009-09-11 19:35:13 +00:00
parent 7de61e351c
commit c8e1d7e0d2
3 changed files with 20 additions and 0 deletions

View File

@ -84,6 +84,7 @@ S_OBJS= _scrsize.o \
mainargs.o \
mcbdefault.o \
mli.o \
mouse_stddrv.o \
open.o \
oserrlist.o \
oserror.o \

View 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

View File

@ -84,6 +84,7 @@ S_OBJS= _scrsize.o \
mainargs.o \
mcbdefault.o \
mli.o \
mouse_stddrv.o \
open.o \
oserrlist.o \
oserror.o \