first debug version of ncpu
[fceu.git] / x6502.h
1 /* FCE Ultra - NES/Famicom Emulator
2  *
3  * Copyright notice for this file:
4  *  Copyright (C) 2002 Ben Parnell
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 typedef struct {
22         int32 count;            /* Cycle counter           */
23         int32 tcount;           /* Temporary cycle counter */
24         uint16 PC;              /* I'll change this to uint32 later... */
25                                 /* I'll need to AND PC after increments to 0xFFFF */
26                                 /* when I do, though.  Perhaps an IPC() macro? */
27         uint8 A,X,Y,S,P,mooPI,PZ;
28         uint8 DB;               /* Data bus "cache" for reads from certain areas */
29         uint8 IRQlow;           /* Simulated IRQ pin held low(or is it high?). */
30         uint8 jammed;
31 } X6502;
32
33 extern X6502 X;
34
35 #define N_FLAG  0x80
36 #define V_FLAG  0x40
37 #define U_FLAG  0x20
38 #define B_FLAG  0x10
39 #define D_FLAG  0x08
40 #define I_FLAG  0x04
41 #define Z_FLAG  0x02
42 #define C_FLAG  0x01
43
44 extern uint32 timestamp;
45 extern void FP_FASTAPASS(1) (*MapIRQHook)(int a);
46
47 #define NTSC_CPU 1789772.7272727272727272
48 #define PAL_CPU  1662607.125
49
50 #define FCEU_IQEXT      0x01
51 #define FCEU_IQNMI      0x08
52 #define FCEU_IQDPCM     0x10
53 #define FCEU_IQFCOUNT   0x20
54 #define FCEU_IQTEMP     0x80
55
56 #if defined(DEBUG_ASM_6502)
57 #define TriggerIRQ TriggerIRQ_d
58 #define TriggerNMI TriggerNMI_d
59 #define TriggerNMINSF TriggerNMINSF_d
60 #define X6502_Run X6502_Run_d
61 #define X6502_Reset X6502_Reset_d
62 #define X6502_Power X6502_Power_d
63 #define X6502_AddCycles X6502_AddCycles_d
64 #define X6502_IRQBegin X6502_IRQBegin_d
65 #define X6502_IRQEnd X6502_IRQEnd_d
66 #define X6502_C
67 #define X6502_A
68 #define X6502_D
69
70 #elif defined(ASM_6502)
71 #define TriggerIRQ TriggerIRQ_a
72 #define TriggerNMI TriggerNMI_a
73 #define TriggerNMINSF TriggerNMINSF_a
74 #define X6502_Reset X6502_Reset_a
75 #define X6502_Power X6502_Power_a
76 #define X6502_AddCycles X6502_AddCycles_a
77 #define X6502_IRQBegin X6502_IRQBegin_a
78 #define X6502_IRQEnd X6502_IRQEnd_a
79 #define X6502_A
80
81 extern uint32 nes_registers[0x10];
82 #define X6502_Run(c) \
83 { \
84  int32 cycles = (c) << 4; /* *16 */ \
85  if (PAL) cycles -= (c);  /* *15 */ \
86  nes_registers[7]+=cycles; \
87  if (nes_registers[7] > 0) X6502_Run_a(); \
88 }
89
90 #else
91 #define X6502_Run(c) \
92 { \
93  int32 cycles = (c) << 4; /* *16 */ \
94  if (PAL) cycles -= (c);  /* *15 */ \
95  X.count+=cycles; \
96  if (X.count > 0) X6502_Run_c(); \
97 }
98 #define X6502_C
99 #endif
100
101 // c
102 #ifdef X6502_C
103 void TriggerIRQ_c(void);
104 void TriggerNMI_c(void);
105 void TriggerNMINSF_c(void);
106 void X6502_Run_c(void);
107 void X6502_Reset_c(void);
108 void X6502_Power_c(void);
109 void FASTAPASS(1) X6502_AddCycles_c(int x);
110 void FASTAPASS(1) X6502_IRQBegin_c(int w);
111 void FASTAPASS(1) X6502_IRQEnd_c(int w);
112 #endif
113
114 // asm
115 #ifdef X6502_A
116 void TriggerIRQ_a(void);
117 void TriggerNMI_a(void);
118 void TriggerNMINSF_a(void);
119 void X6502_Run_a(void);
120 void X6502_Reset_a(void);
121 void X6502_Power_a(void);
122 void X6502_AddCycles_a(int x);
123 void X6502_IRQBegin_a(int w);
124 void X6502_IRQEnd_a(int w);
125 #endif
126
127 // debug
128 #ifdef X6502_D
129 void TriggerIRQ_d(void);
130 void TriggerNMI_d(void);
131 void TriggerNMINSF_d(void);
132 void X6502_Run_d(int32 c);
133 void X6502_Reset_d(void);
134 void X6502_Power_d(void);
135 void X6502_AddCycles_d(int x);
136 void X6502_IRQBegin_d(int w);
137 void X6502_IRQEnd_d(int w);
138 #endif
139