-
Notifications
You must be signed in to change notification settings - Fork 10
/
mc6809.h
268 lines (236 loc) · 5.55 KB
/
mc6809.h
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
//
// mc6809.h
//
// Class definition for Motorola MC6809 microprocessor
//
// (C) R.P.Bellis 1993
//
#pragma once
#include <string>
#include "wiring.h"
#include "usim.h"
#include "bits.h"
#ifndef USIM_MACHDEP_H
#include "machdep.h"
#endif
class mc6809 : virtual public USimMotorola {
protected: // Processor addressing modes
enum {
immediate,
direct,
indexed,
extended,
inherent,
relative
} mode;
protected: // Processor registers
Word u, s; // Stack pointers
Word x, y; // Index registers
Byte dp; // Direct Page register
union {
Word d; // Combined accumulator
struct {
#ifdef MACH_BYTE_ORDER_MSB_FIRST
Byte a; // Accumulator a
Byte b; // Accumulator b
#else
Byte b; // Accumulator b
Byte a; // Accumulator a
#endif
} byte;
} acc;
Byte& a;
Byte& b;
Word& d;
union {
Byte all; // Condition code register
struct {
#ifdef MACH_BITFIELDS_LSB_FIRST
Byte c : 1; // Carry
Byte v : 1; // Overflow
Byte z : 1; // Zero
Byte n : 1; // Negative
Byte i : 1; // IRQ disable
Byte h : 1; // Half carry
Byte f : 1; // FIRQ disable
Byte e : 1; // Entire
#else
Byte e : 1; // Entire
Byte f : 1; // FIRQ disable
Byte h : 1; // Half carry
Byte i : 1; // IRQ disable
Byte n : 1; // Negative
Byte z : 1; // Zero
Byte v : 1; // Overflow
Byte c : 1; // Carry
#endif
} bit;
} cc;
private: // internal processor state
bool waiting_sync;
bool waiting_cwai;
bool nmi_previous;
private: // instruction and operand fetch and decode
Word& ix_refreg(Byte);
void fetch_instruction();
Byte fetch_operand();
Word fetch_word_operand();
Word fetch_effective_address();
Word fetch_indexed_operand();
void execute_instruction();
void do_predecrement();
void do_postincrement();
private: // instruction implementations
void abx();
void adca(), adcb();
void adda(), addb(), addd();
void anda(), andb(), andcc();
void asra(), asrb(), asr();
void bcc(), lbcc();
void bcs(), lbcs();
void beq(), lbeq();
void bge(), lbge();
void bgt(), lbgt();
void bhi(), lbhi();
void bita(), bitb();
void ble(), lble();
void bls(), lbls();
void blt(), lblt();
void bmi(), lbmi();
void bne(), lbne();
void bpl(), lbpl();
void bra(), lbra();
void brn(), lbrn();
void bsr(), lbsr();
void bvc(), lbvc();
void bvs(), lbvs();
void clra(), clrb(), clr();
void cmpa(), cmpb();
void cmpd(), cmpx(), cmpy(), cmpu(), cmps();
void coma(), comb(), com();
void cwai();
void daa();
void deca(), decb(), dec();
void eora(), eorb();
void exg();
void inca(), incb(), inc();
void jmp();
void jsr();
void lda(), ldb();
void ldd(), ldx(), ldy(), lds(), ldu();
void leax(), leay(), leas(), leau();
void lsla(), lslb(), lsl();
void lsra(), lsrb(), lsr();
void mul();
void nega(), negb(), neg();
void nop();
void ora(), orb(), orcc();
void pshs(), pshu();
void puls(), pulu();
void rola(), rolb(), rol();
void rora(), rorb(), ror();
void rti(), rts();
void sbca(), sbcb();
void sex();
void sta(), stb();
void std(), stx(), sty(), sts(), stu();
void suba(), subb();
void subd();
void swi(), swi2(), swi3();
void sync();
void tfr();
void tsta(), tstb(), tst();
protected: // helper functions
void help_adc(Byte&);
void help_add(Byte&);
void help_and(Byte&);
void help_asr(Byte&);
void help_bit(Byte);
void help_clr(Byte&);
void help_cmp(Byte);
void help_cmp(Word);
void help_com(Byte&);
void help_dec(Byte&);
void help_eor(Byte&);
void help_inc(Byte&);
void help_ld(Byte&);
void help_ld(Word&);
void help_lsr(Byte&);
void help_lsl(Byte&);
void help_neg(Byte&);
void help_or(Byte&);
void help_psh(Byte, Word&, Word&);
void help_pul(Byte, Word&, Word&);
void help_ror(Byte&);
void help_rol(Byte&);
void help_sbc(Byte&);
void help_st(Byte);
void help_st(Word);
void help_sub(Byte&);
void help_sub(Word&);
void help_tst(Byte);
protected: // overloadable functions (e.g. for breakpoints)
virtual void do_br(const char *, bool);
virtual void do_lbr(const char *, bool);
virtual void do_psh(Word& sp, Byte);
virtual void do_psh(Word& sp, Word);
virtual void do_pul(Word& sp, Byte&);
virtual void do_pul(Word& sp, Word&);
virtual void do_nmi();
virtual void do_firq();
virtual void do_irq();
virtual void pre_exec();
virtual void post_exec();
protected: // instruction tracing
Word insn_pc;
const char* insn;
Byte post;
Word operand;
std::string disasm_operand();
std::string disasm_indexed();
public: // external signal pins
InputPin IRQ, FIRQ, NMI;
public:
mc6809(); // public constructor
virtual ~mc6809(); // public destructor
virtual void reset(); // CPU reset
virtual void tick();
virtual void print_regs();
Byte& byterefreg(int);
Word& wordrefreg(int);
};
inline void mc6809::do_br(const char *mnemonic, bool test)
{
(void)mnemonic;
Word offset = extend8(fetch_operand());
if (test) pc += offset;
++cycles;
}
inline void mc6809::do_lbr(const char *mnemonic, bool test)
{
(void)mnemonic;
Word offset = fetch_word_operand();
if (test) {
pc += offset;
++cycles;
}
++cycles;
}
inline void mc6809::do_psh(Word& sp, Byte val)
{
write(--sp, val);
}
inline void mc6809::do_psh(Word& sp, Word val)
{
write(--sp, (Byte)val);
write(--sp, (Byte)(val >> 8));
}
inline void mc6809::do_pul(Word& sp, Byte& val)
{
val = read(sp++);
}
inline void mc6809::do_pul(Word& sp, Word& val)
{
val = read(sp++) << 8;
val |= read(sp++);
}