mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-22 15:31:41 +00:00
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
/*
|
|
* Apple // emulator for *ix
|
|
*
|
|
* This software package is subject to the GNU General Public License
|
|
* version 3 or later (your choice) as published by the Free Software
|
|
* Foundation.
|
|
*
|
|
* Copyright 2013-2015 Aaron Culliney
|
|
*
|
|
*/
|
|
|
|
#ifndef _PERIPHERALS_H_
|
|
#define _PERIPHERALS_H_
|
|
|
|
#include "common.h"
|
|
|
|
typedef enum eIRQSRC {
|
|
IS_6522=0x08, // NOTE : matches IRQ... defines in cpu.h
|
|
IS_SPEECH=0x10,
|
|
IS_SSC=0x20,
|
|
IS_MOUSE=0x40
|
|
} eIRQSRC;
|
|
|
|
typedef enum SS_CARDTYPE
|
|
{
|
|
CT_Empty = 0,
|
|
CT_Disk2, // Apple Disk][
|
|
CT_SSC, // Apple Super Serial Card
|
|
CT_MockingboardC, // Soundcard
|
|
CT_GenericPrinter,
|
|
CT_GenericHDD, // Hard disk
|
|
CT_GenericClock,
|
|
CT_MouseInterface,
|
|
CT_Z80,
|
|
CT_Phasor, // Soundcard
|
|
CT_Echo, // Soundcard
|
|
CT_SAM, // Soundcard: Software Automated Mouth
|
|
} SS_CARDTYPE;
|
|
|
|
typedef struct
|
|
{
|
|
unsigned long dwLength; // Byte length of this unit struct
|
|
unsigned long dwVersion;
|
|
} SS_UNIT_HDR;
|
|
|
|
typedef struct
|
|
{
|
|
SS_UNIT_HDR UnitHdr;
|
|
unsigned long dwType; // SS_CARDTYPE
|
|
unsigned long dwSlot; // [1..7]
|
|
} SS_CARD_HDR;
|
|
|
|
void CpuIrqAssert(eIRQSRC irq_source);
|
|
void CpuIrqDeassert(eIRQSRC irq_source);
|
|
|
|
#endif
|