1
0
mirror of https://github.com/cc65/cc65.git synced 2025-09-22 16:24:45 +00:00
Files
.github
asminc
cfg
doc
include
em
geos
joystick
mouse
sys
tgi
6502.h
_6522.h
_6525.h
_6526.h
_6545.h
_6551.h
_antic.h
_atari5200os.h
_atarios.h
_gtia.h
_heap.h
_maria.h
_mikey.h
_pbi.h
_pia.h
_pokey.h
_riot.h
_sid.h
_suzy.h
_ted.h
_tia.h
_vdc.h
_vic.h
_vic2.h
accelerator.h
apple2.h
apple2_filetype.h
apple2enh.h
ascii_charmap.h
assert.h
atari.h
atari2600.h
atari5200.h
atari7800.h
atari_atascii_charmap.h
atari_screen_charmap.h
atmos.h
c128.h
c16.h
c64.h
cbm.h
cbm264.h
cbm510.h
cbm610.h
cbm_filetype.h
cbm_petscii_charmap.h
cbm_screen_charmap.h
cc65.h
conio.h
creativision.h
ctype.h
cx16.h
dbg.h
device.h
dio.h
dirent.h
em.h
errno.h
fcntl.h
gamate.h
geos.h
inttypes.h
iso646.h
joystick.h
limits.h
locale.h
lynx.h
lz4.h
modload.h
mouse.h
nes.h
o65.h
osic1p.h
pce.h
peekpoke.h
pen.h
pet.h
plus4.h
serial.h
setjmp.h
signal.h
stdarg.h
stdbool.h
stddef.h
stdint.h
stdio.h
stdlib.h
string.h
supervision.h
sym1.h
target.h
telestrat.h
tgi.h
time.h
unistd.h
vic20.h
zlib.h
libsrc
samples
src
targettest
test
util
.gitattributes
.gitignore
.travis.yml
Contributing.md
LICENSE
Makefile
Makefile.travis
README.md
cc65/include/plus4.h
2021-04-19 16:06:10 +02:00

65 lines
3.0 KiB
C

/*****************************************************************************/
/* */
/* plus4.h */
/* */
/* Plus/4 system specific definitions */
/* */
/* */
/* */
/* (C) 1998-2006, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 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 */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
#ifndef _PLUS4_H
#define _PLUS4_H
/* Check for errors */
#if !defined(__PLUS4__)
# error This module may only be used when compiling for the Plus/4!
#endif
/* Include the base header file for the 264 series. */
#include <cbm264.h>
/* Define hardware */
#include <_6551.h>
#define ACIA (*(struct __6551*)0xFD00)
/* The addresses of the static drivers */
extern void plus4_stdjoy_joy[]; /* Referred to by joy_static_stddrv[] */
extern void plus4_stdser_ser[];
/* End of plus4.h */
#endif