blob: 2965b90970f3fb971fb0dccdd8325eb058a928c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*****************************************************************************
*
* cp1610.h
* Portable General Instruments CP1610 emulator interface
*
* Copyright Frank Palazzolo, all rights reserved.
*
* - This source code is released as freeware for non-commercial purposes.
* - You are free to use and redistribute this code in modified or
* unmodified form, provided you list me in the credits.
* - If you modify this source code, you must add a notice to each modified
* source file that it has been changed. If you're a nice person, you
* will clearly mark each change too. :)
* - If you wish to use this for commercial purposes, please contact me at
* palazzol@comcast.net
* - This entire notice must remain in the source code.
*
*****************************************************************************/
#pragma once
#ifndef __CP1610_H__
#define __CP1610_H__
#include "cpuintrf.h"
enum
{
CP1610_R0=1, CP1610_R1, CP1610_R2, CP1610_R3,
CP1610_R4, CP1610_R5, CP1610_R6, CP1610_R7
};
#define CP1610_INT_NONE 0
#define CP1610_INT_INTRM 1 /* Maskable */
#define CP1610_RESET INPUT_LINE_RESET /* Non-Maskable */
#define CP1610_INT_INTR INPUT_LINE_NMI /* Non-Maskable */
CPU_GET_INFO( cp1610 );
#define CPU_CP1610 CPU_GET_INFO_NAME( cp1610 )
CPU_DISASSEMBLE( cp1610 );
#endif /* __CP1610_H__ */
|