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
|
#define I 0
#define J 1
#define A 2
#define B 3
#define XL 4
#define XH 5
#define YL 6
#define YH 7
#define K 8
#define L 9
#define V 10 // some docus m
#define W 11 // some docus n
#define IA 92
#define IB 93
#define F0 94
#define C 95
enum
{
SC61860_PC=1, SC61860_DP,
SC61860_P, SC61860_Q, SC61860_R,
SC61860_CARRY,
SC61860_ZERO,
// the following are in the internal ram!
SC61860_BA,
SC61860_X, SC61860_Y,
SC61860_I, SC61860_J, SC61860_K, SC61860_L, SC61860_V, SC61860_W,
SC61860_H
// SC61860_NMI_STATE,
// SC61860_IRQ_STATE
};
|