2001-10-02 18:48:54 +00:00
|
|
|
/*****************************************************************************/
|
2004-03-11 21:54:22 +00:00
|
|
|
/* */
|
|
|
|
/* apple2.h */
|
|
|
|
/* */
|
|
|
|
/* Apple ][ system specific definitions */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* (C) 2000 Kevin Ruland, <kevin@rodin.wustl.edu> */
|
|
|
|
/* (C) 2003 Ullrich von Bassewitz, <uz@cc65.org> */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
2001-10-02 18:48:54 +00:00
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
2004-03-11 21:54:22 +00:00
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
2001-10-02 18:48:54 +00:00
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
2004-03-11 21:54:22 +00:00
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
2001-10-02 18:48:54 +00:00
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
2004-03-11 21:54:22 +00:00
|
|
|
/* appreciated but is not required. */
|
2001-10-02 18:48:54 +00:00
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
2004-03-11 21:54:22 +00:00
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
2001-10-02 18:48:54 +00:00
|
|
|
/*****************************************************************************/
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _APPLE2_H
|
|
|
|
#define _APPLE2_H
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-09-19 08:46:07 +00:00
|
|
|
/* Check for errors */
|
2004-03-13 21:39:01 +00:00
|
|
|
#if !defined(__APPLE2__) && !defined(__APPLE2ENH__)
|
2001-09-19 08:46:07 +00:00
|
|
|
# error This module may only be used when compiling for the Apple ][!
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-08-26 20:36:44 +00:00
|
|
|
/*****************************************************************************/
|
2004-03-11 21:54:22 +00:00
|
|
|
/* Data */
|
2003-08-26 20:36:44 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Color Defines
|
|
|
|
* Since Apple2 does not support color text these defines are only
|
|
|
|
* used to get the library to compile correctly. They should not be used
|
|
|
|
* in user code
|
|
|
|
*/
|
2004-03-11 21:54:22 +00:00
|
|
|
#define COLOR_BLACK 0x00
|
|
|
|
#define COLOR_WHITE 0x01
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* Characters codes */
|
2004-03-18 09:42:02 +00:00
|
|
|
#define CH_ENTER 0x0D
|
2004-03-11 21:54:22 +00:00
|
|
|
#define CH_ESC 0x1B
|
|
|
|
#define CH_CURS_LEFT 0x08
|
|
|
|
#define CH_CURS_RIGHT 0x15
|
|
|
|
|
|
|
|
#define CH_ULCORNER '+'
|
|
|
|
#define CH_URCORNER '+'
|
|
|
|
#define CH_LLCORNER '+'
|
|
|
|
#define CH_LRCORNER '+'
|
|
|
|
#define CH_TTEE '+'
|
|
|
|
#define CH_BTEE '+'
|
|
|
|
#define CH_LTEE '+'
|
|
|
|
#define CH_RTEE '+'
|
|
|
|
#define CH_CROSS '+'
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-08-26 20:36:44 +00:00
|
|
|
/* Return codes for get_ostype */
|
2004-03-11 21:54:22 +00:00
|
|
|
#define APPLE_IIPLAIN 0x01 /* Plain Apple ][ */
|
|
|
|
#define APPLE_IIPLUS 0x02 /* Apple ][+ */
|
|
|
|
#define APPLE_IIIEM 0x03 /* Apple /// in emulation mode */
|
|
|
|
#define APPLE_IIE 0x04 /* Apple //e */
|
|
|
|
#define APPLE_IIEENH 0x05 /* Enhanced Apple //e */
|
|
|
|
#define APPLE_IIECARD 0x06 /* Apple //e Option Card */
|
|
|
|
#define APPLE_IIC 0x07 /* Apple //c */
|
2003-08-26 20:36:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2004-03-11 21:54:22 +00:00
|
|
|
/* Code */
|
2003-08-26 20:36:44 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned char get_ostype (void);
|
2004-03-11 21:54:22 +00:00
|
|
|
/* Get the machine type. Returns one of the APPLE_xxx codes. */
|
2003-08-26 20:36:44 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* End of apple2.h */
|
|
|
|
#endif
|