1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00
cc65/include
ol.sc 89d4f4a90c Introduced getcurrentdevice() and implemented it for CBM and Apple.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5863 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-10-21 14:35:17 +00:00
..
em Renamed the deinstall vector to uninstall. 2003-02-10 22:31:45 +00:00
geos Removed cpputs/cpputsxy as they don't work and as there's really very little use for proprietary extensions of a character API emulated on a graphics systems. 2012-10-19 06:53:55 +00:00
joystick Fixed a problem when loading joystick drivers: When an install error occurred, 2006-06-04 10:15:18 +00:00
mouse Fixed a problem in mouse_load_driver: The driver was not removed from memory 2006-06-04 09:48:14 +00:00
sys Fixed _HAVE_off_t 2003-10-21 19:54:35 +00:00
tgi Rewrote tgi_load_driver in assembler and fixed a possible memory leak when 2012-07-22 11:07:46 +00:00
_6522.h Added a comment 2004-04-08 17:43:28 +00:00
_6525.h Added standard copyright headers 2000-07-22 19:03:03 +00:00
_6526.h Added a comment 2004-04-08 17:43:28 +00:00
_6545.h Added standard copyright headers 2000-07-22 19:03:03 +00:00
_6551.h Added standard copyright headers 2000-07-22 19:03:03 +00:00
_antic.h fix typos in comments 2011-02-07 23:51:18 +00:00
_gtia.h added standard copyright header 2000-07-29 21:41:06 +00:00
_heap.h Changed the way, used blocks are managed 2004-12-19 23:09:38 +00:00
_mikey.h Fix eol 2012-10-16 08:10:50 +00:00
_pbi.h added standard copyright header 2000-07-29 21:41:06 +00:00
_pia.h Added/updated header blocks 2001-10-02 18:48:54 +00:00
_pokey.h Added/updated header blocks 2001-10-02 18:48:54 +00:00
_sid.h AD2 was missing - thanks to groepaz for the hint 2002-02-12 09:46:45 +00:00
_suzy.h Fix eol 2012-10-16 08:10:50 +00:00
_ted.h Added _ted.h header file and TED definition 2003-12-14 22:03:20 +00:00
_vdc.h Added standard copyright headers 2000-07-22 19:03:03 +00:00
_vic.h Moved _vic.h to _vic2.h. Renamed __vic to __vic2. 2002-11-05 20:33:50 +00:00
_vic2.h Added an improved definition of the __vic2 structure using anon 2012-03-17 21:07:41 +00:00
6502.h The set_irq function needs size_t. 2012-03-11 10:46:04 +00:00
ace.h Check for wrong header file inclusions, add CBM510 stuff 2001-09-19 08:46:07 +00:00
apple2.h Replaced Apple II specific solution with implementation of recently introduced devicedir(). 2012-10-10 20:55:56 +00:00
apple2enh.h Added TGI_COLOR_... macros to be used both for hires and lores. Introduced color mapping on lores to allow for common color macros. 2011-04-25 11:16:56 +00:00
assert.h assert() must be an expression of type void 2002-09-18 20:15:49 +00:00
atari.h recognize XDOS -- patch from Stefan Haubenthal 2012-02-11 08:35:54 +00:00
atmos.h Tape load and save functions for the Oric Atmos. By Stefan Haubenthal. 2012-05-28 11:11:39 +00:00
c16.h Move common stuff for the C16 and Plus/4 into cbm264.h 2002-12-09 22:09:20 +00:00
c64.h Added TGI colors (simply based on the conio colors). 2011-04-20 12:20:33 +00:00
c128.h Added TGI colors (simply based on the conio colors). 2011-04-20 12:20:33 +00:00
cbm_filetype.h According to Greg King, Vorpal files are regular files. 2012-07-01 18:10:57 +00:00
cbm.h Implemented __syschdir on CBM. As getcwd returns a cached directory any direct access to __curunit would cause inconsistencies. Therefore __curunit was renamed to curunit to prohibit user access. 2012-10-16 21:39:40 +00:00
cbm264.h Added _ted.h header file and TED definition 2003-12-14 22:03:20 +00:00
cbm510.h Use __asm__() instead of asm(). 2009-08-15 09:08:03 +00:00
cbm610.h Use __asm__() instead of asm(). 2009-08-15 09:08:03 +00:00
cc65.h Make the 8x32 unsigned multiplication routine C callable. 2011-07-10 14:52:35 +00:00
conio.h Remove the #error statement if the platform is unknown. This allows use of 2007-08-21 13:16:53 +00:00
ctype.h Added prototype for toascii(c); 2009-11-02 16:11:32 +00:00
dbg.h Fixed the comments 2003-03-17 21:48:37 +00:00
device.h Introduced getcurrentdevice() and implemented it for CBM and Apple. 2012-10-21 14:35:17 +00:00
dio.h Removed DIO specific typedefs which were just aliases to basic types and replaced the term 'drive' with 'device' in order to harmonize with the recently added device.h. 2012-10-11 18:22:49 +00:00
dirent.h Added functional Atari directory classification macros for file types from struct dirent contributed by Stefan A. Haubenthal. 2012-07-03 20:10:52 +00:00
em.h Rewrote em_load_driver in assembler fixing a possible memory leak. 2012-07-22 11:36:09 +00:00
errno.h Renamed oserrcheck to __mappederrno. Added an additional function named 2010-06-10 18:10:53 +00:00
fcntl.h Added O_EXCL 2004-11-27 15:18:33 +00:00
geos.h The 128+x character codes were very likely intended to be interpreted by cputs and translated into explicit drawing of short lines. However there was no code to do so at all. Given that the emulation of a characterbased API on a graphics system isn't the premier choice for a sophisticated UI it doesn't seem appropriate to invest into actually implementing the approach described above. Therefore I just replaced the character codes with a '+'. 2012-10-19 07:19:08 +00:00
inttypes.h Remove ldiv_t - it should only be in stdlib.h. Reported by Marc Rintsch. 2011-11-05 19:49:34 +00:00
iso646.h Added standard copyright headers 2000-07-22 19:03:03 +00:00
joystick.h Removed __fastcall__ declarations for functions without parameters. 2011-07-07 20:19:35 +00:00
limits.h Declaration of LONG_MIN was wrong 2002-12-15 12:12:33 +00:00
locale.h Fixed definition of NULL 2005-04-17 20:09:28 +00:00
lynx.h Add Lynx hardware chip access 2012-10-16 08:03:36 +00:00
modload.h All module functions are fastcall 2002-12-13 00:41:34 +00:00
mouse.h Removed __fastcall__ declarations for functions without parameters. 2011-07-07 20:19:35 +00:00
nes.h Removed __fastcall__ declarations for functions without parameters. 2011-07-07 20:19:35 +00:00
o65.h Added some definitions for version 1.3 of the o65 format. 2009-12-10 22:44:27 +00:00
peekpoke.h Fixed a typo 2003-11-04 19:26:24 +00:00
pet.h Added 40xx and SuperPET chips 2005-07-17 09:59:18 +00:00
plus4.h The Plus/4 has an ACIA 2006-05-09 19:44:33 +00:00
serial.h An already loaded driver is an error in ser_load_driver, because the library 2012-07-22 19:54:04 +00:00
setjmp.h Marked abort() and longjmp() with __attribute__((noreturn)). 2009-10-19 09:29:09 +00:00
signal.h Make _sig_ign and _sig_dfl fastcall 2005-05-26 09:20:36 +00:00
stdarg.h va_copy is only available from C99 and up 2004-12-11 14:59:05 +00:00
stdbool.h Fixed a bug 2003-06-03 12:03:28 +00:00
stddef.h Make wchar_t a char instead of a short. 2009-09-18 07:38:00 +00:00
stdint.h Remove dependencies for other header files 2002-12-15 14:39:01 +00:00
stdio.h Removed __fastcall__ declarations for functions without parameters. 2011-07-07 20:19:35 +00:00
stdlib.h Removed __fastcall__ declarations for functions without parameters. 2011-07-07 20:19:35 +00:00
string.h add strnicmp/strncasecmp 2009-02-10 19:16:22 +00:00
supervision.h New target supervision 2003-10-10 16:44:20 +00:00
tgi.h Adjustments to recent adding of get/set prefix to tgi function names. 2011-11-29 21:36:42 +00:00
time.h Added an implementation of clock() for the Lynx console. By Greg King. 2012-02-06 20:17:54 +00:00
unistd.h Make exec() only visible if standard=cc655. 2011-01-25 20:20:12 +00:00
vic20.h Additional I/O chips added by Stefan Haubenthal 2004-03-13 22:51:29 +00:00
zlib.h Update from Piotr 2001-11-18 20:05:57 +00:00