Blaster Master + other fixes
[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;
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_Rebase X6502_Rebase_d
67 #define X6502_C
68 #define X6502_A
69 #define X6502_D
70
71 #elif defined(ASM_6502)
72 #define TriggerIRQ TriggerIRQ_a
73 #define TriggerNMI TriggerNMI_a
74 #define TriggerNMINSF TriggerNMINSF_a
75 #define X6502_Reset X6502_Reset_a
76 #define X6502_Power X6502_Power_a
77 #define X6502_AddCycles X6502_AddCycles_a
78 #define X6502_IRQBegin X6502_IRQBegin_a
79 #define X6502_IRQEnd X6502_IRQEnd_a
80 #define X6502_Rebase X6502_Rebase_a
81 #define X6502_A
82
83 #define X6502_Run(c) \
84 { \
85  int32 cycles = (c) << 4; /* *16 */ \
86  if (PAL) cycles -= (c);  /* *15 */ \
87  nes_registers[7]+=cycles<<16; \
88  cycles=(int32)nes_registers[7]>>16; \
89  if (cycles > 0) { \
90    X6502_Run_a(); \
91    cycles -= (int32)nes_registers[7]>>16; \
92    asmcpu_update(cycles); \
93  } \
94 }
95
96 #else
97 #define TriggerIRQ TriggerIRQ_c
98 #define TriggerNMI TriggerNMI_c
99 #define TriggerNMINSF TriggerNMINSF_c
100 #define X6502_Reset X6502_Reset_c
101 #define X6502_Power X6502_Power_c
102 #define X6502_AddCycles X6502_AddCycles_c
103 #define X6502_IRQBegin X6502_IRQBegin_c
104 #define X6502_IRQEnd X6502_IRQEnd_c
105 #define X6502_Rebase(...)
106 #define X6502_C
107
108 #define X6502_Run(c) \
109 { \
110  int32 cycles = (c) << 4; /* *16 */ \
111  if (PAL) cycles -= (c);  /* *15 */ \
112  X.count+=cycles; \
113  if (X.count > 0) X6502_Run_c(); \
114 }
115 #define X6502_C
116 #endif
117
118 // c
119 #ifdef X6502_C
120 void TriggerIRQ_c(void);
121 void TriggerNMI_c(void);
122 void TriggerNMINSF_c(void);
123 void X6502_Run_c(void);
124 void X6502_Reset_c(void);
125 void X6502_Power_c(void);
126 void FASTAPASS(1) X6502_AddCycles_c(int x);
127 void FASTAPASS(1) X6502_IRQBegin_c(int w);
128 void FASTAPASS(1) X6502_IRQEnd_c(int w);
129 #endif
130
131 // asm
132 #ifdef X6502_A
133 extern uint32 nes_registers[0x10];
134 extern uint32 pc_base;
135 void TriggerIRQ_a(void);
136 void TriggerNMI_a(void);
137 void TriggerNMINSF_a(void);
138 void X6502_Run_a(void);
139 void X6502_Reset_a(void);
140 void X6502_Power_a(void);
141 void X6502_AddCycles_a(int x);
142 void X6502_IRQBegin_a(int w);
143 void X6502_IRQEnd_a(int w);
144 void X6502_Rebase_a(void);
145 #endif
146
147 // debug
148 #ifdef X6502_D
149 void TriggerIRQ_d(void);
150 void TriggerNMI_d(void);
151 void TriggerNMINSF_d(void);
152 void X6502_Run_d(int32 c);
153 void X6502_Reset_d(void);
154 void X6502_Power_d(void);
155 void X6502_AddCycles_d(int x);
156 void X6502_IRQBegin_d(int w);
157 void X6502_IRQEnd_d(int w);
158 void X6502_Rebase_d(void);
159 #endif
160