1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/apple2
ol.sc e9f69ad123 Factored out generic LINE implementation based on SETPIXEL from the three drivers previously containing the identical code.
Note: Originally I planned to create a module to be linked to the driver. However this turned out to cause quite some issues with the Makefiles - especially on the Apple2 where one driver uses to generic LINE implementation and the other doesn't. The final Makefile was so ugly that I rather opted for including the code in question on source level. In order to avoid to unwanted cross dependencies the whole .inc file content is wrapped in its own scope.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4553 b7a2c559-68d2-44c3-8de9-860c34a00d81
2010-01-24 11:21:44 +00:00
..
extra Fixed bug triggered if all 8 io buffer slots may be used. 2009-09-26 21:32:05 +00:00
_scrsize.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
apple2-40-48-16.s Factored out generic LINE implementation based on SETPIXEL from the three drivers previously containing the identical code. 2010-01-24 11:21:44 +00:00
apple2-280-192-8.fnt - Replaced font .byte's with font .incbin file 2009-11-03 22:20:48 +00:00
apple2-280-192-8.s Minor comment adjustment. 2010-01-08 22:24:38 +00:00
apple2-auxmem.s Removed generic macpack 2009-11-02 21:54:51 +00:00
apple2-ssc.s Added macro for ssc slot selection. 2009-12-13 11:23:20 +00:00
apple2-stdjoy.s Removed generic macpack 2009-11-02 21:54:51 +00:00
apple2-stdmou.s Replaced left-over tab with space. 2009-12-09 18:16:02 +00:00
break.s Remove break registers as absolute variables 2004-03-13 21:41:30 +00:00
cclear.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
cgetc.s New cgetc with apple2enh fix from Oliver Scmidt 2005-04-08 19:27:07 +00:00
chline.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
close.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
closedir.c New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
clrscr.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
color.s The value of COLOR_WHITE changed from 1 to 3. 2008-03-25 19:08:26 +00:00
cout.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
cputc.s Apple 2 mouse driver and other stuff from Oliver Schmidt 2006-04-06 19:51:37 +00:00
crt0.s Added author hint - as contained in the other source files. 2009-09-22 17:30:50 +00:00
ctype.s Replaced /bin/bash0 by new CT_NONE 2003-10-10 16:59:58 +00:00
cvline.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
dioclose.s dio implementation by Oliver Schmidt 2005-03-30 18:25:04 +00:00
diocommon.s dio implementation by Oliver Schmidt 2005-03-30 18:25:04 +00:00
dioopen.s Update from Oliver Schmidt 2005-03-31 07:24:01 +00:00
dioread.s dio implementation by Oliver Schmidt 2005-03-30 18:25:04 +00:00
diosectcount.s Update from Oliver Schmidt: Includes gotox/gotoy which were missing before. 2005-04-01 09:59:53 +00:00
diosectsize.s Update from Oliver Schmidt: Includes gotox/gotoy which were missing before. 2005-04-01 09:59:53 +00:00
diowrite.s dio implementation by Oliver Schmidt 2005-03-30 18:25:04 +00:00
dir.h Update from Oliver Schmidt 2007-01-05 16:16:34 +00:00
dosdetect.s Addon to 4155: Fixed error. 2009-09-12 06:58:20 +00:00
filedes.inc Cosmetic changes from Oliver Schmidt 2005-04-15 08:27:09 +00:00
filedes.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
fileerr.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
filename.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
get_ostype.s Cosmetic changes by Oliver Schmidt 2005-11-21 20:52:41 +00:00
gotoxy.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
gotoy.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
home.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
initcwd.s Update by Oliver Schmidt 2006-05-29 16:27:39 +00:00
iobuf.s Hooking into the MLI call needs much more thoughts - and is currently not necessary... 2009-09-12 20:55:20 +00:00
joy_stddrv.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
kbhit.s Cosmetic changes requested by Oliver Schmidt 2005-03-30 18:17:57 +00:00
mainargs.s Adjusted to the changed default start address. 2009-09-04 21:32:41 +00:00
Makefile Moved most platform assembler includes into asminc, so they will be available 2009-09-24 17:44:22 +00:00
mcbdefault.s Just presume alternate charset to be active on the //e - how shouldn't it if conio usage activates it. 2009-09-07 14:00:17 +00:00
mli.inc Much better approach for ProDOS 8 IO-buffer custom implementations - the first one was actually kind of stupid. 2009-09-11 19:54:29 +00:00
mli.s Hooking into the MLI call needs much more thoughts - and is currently not necessary... 2009-09-12 20:55:20 +00:00
mouse_stddrv.s Adjusted Apple2 targets to the new standard mouse driver paradigm. 2009-09-11 19:35:13 +00:00
open.s ProDOS 8 requires an page-aligned 1kB IO-buffer for every open file. The implementation using posix_memalign() is universally correct but quite expensive. There I added support for overriding this implementation with maybe limited (i.e. to one open file) but cheaper custom implementations. 2009-09-10 09:59:26 +00:00
opendir.c Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
oserrlist.s New module from Stefan Haubenthal 2004-01-04 21:24:37 +00:00
oserror.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
randomize.s New _randomize() function, do some cleanup on apple2.inc 2002-11-07 12:16:15 +00:00
rdkey.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
read.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
readdir.c Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
reboot.s Now that cc65 programs can run as SYS files themselves my ProDOS Loader ulimately has to change from a minimalistic shell replacement to a pure loader (without exit hook). This approach simplifies several things. However the "reboot after exit" option now present as a ProDOS Loader variant has to move into the cc65 program. 2009-09-14 19:58:06 +00:00
revers.s Removed tabs 2005-03-28 17:27:04 +00:00
rewinddir.c Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
rwcommon.s POSIX file I/O by Oliver Schmidt 2005-04-12 09:12:48 +00:00
syschdir.s Update by Oliver Schmidt 2006-05-29 16:27:39 +00:00
sysmkdir.s New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
sysremove.s New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
sysrename.s New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
sysrmdir.s New stuff contributed by Oliver Schmidt 2005-08-31 20:11:45 +00:00
systime.s Move common data and ex-/imports into an assembler include named time.inc. 2009-07-27 17:59:27 +00:00
sysuname.s New uname function 2003-08-12 17:24:02 +00:00
textframe.s Removed '_' prefix from textframe(xy) because this prefix for non-standard symbols isn't necessary if they are declared in non-standard include files. 2009-09-10 19:18:15 +00:00
tgi_mode_table.s Define a standard driver and mode for tgi graphics and use it in the sample 2009-09-11 18:59:37 +00:00
videomode.s This is what was actually meant in the first place. 2009-09-30 08:04:34 +00:00
vtabz.s Oliver Schmidt updated the graphics drivers and part of the C library for the 2008-03-16 09:37:22 +00:00
wherex.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
wherey.s New version from Oliver Schmidt 2005-03-26 17:03:30 +00:00
write.s Minor reformatting. 2009-09-04 21:28:16 +00:00