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
mod execute;
mod fetch;
mod registers;
use crate::memory::{ActiveInterrupt, Memory};
use crate::trace::{CpuTrace, TraceHandler};
use execute::Execute;
use fetch::Fetch;
use registers::{flags, Registers};

use super::Cpu;

const CLOCKS_PER_POLL: u64 = 100;

#[derive(Copy, Clone, PartialEq)]
pub enum Mos6502Variant {
  /// 6502
  NMOS,
  /// 65C02
  CMOS,
}

/// The MOS 6502 CPU and its associated memory.
pub struct Mos6502 {
  pub registers: Registers,
  pub memory: Box<dyn Memory>,
  cycle_count: u64,
  cycles_since_poll: u64,
  variant: Mos6502Variant,
  trace: Option<Box<dyn TraceHandler>>,
}

/// Read and write from the system's memory.
pub trait MemoryIO {
  /// Read a byte from the given address in memory.
  fn read(&mut self, address: u16) -> u8;

  /// Write a byte to the given address in memory.
  fn write(&mut self, address: u16, value: u8);

  /// Read a word (little-endian) from the given address in memory.
  fn read_word(&mut self, address: u16) -> u16;

  /// Write a word (little-endian) to the given address in memory.
  fn write_word(&mut self, address: u16, value: u16);
}

impl MemoryIO for Mos6502 {
  fn read(&mut self, address: u16) -> u8 {
    self.memory.read(address)
  }

  fn read_word(&mut self, address: u16) -> u16 {
    let lo = self.memory.read(address);
    let hi = self.memory.read(address + 1);
    (hi as u16) << 8 | lo as u16
  }

  fn write(&mut self, address: u16, value: u8) {
    self.memory.write(address, value);
  }

  fn write_word(&mut self, address: u16, value: u16) {
    self.memory.write(address, value as u8);
    self.memory.write(address + 1, (value >> 8) as u8);
  }
}

/// Push and pop values from the stack.
pub trait Stack {
  /// Push a byte onto the stack.
  fn push(&mut self, value: u8);

  /// Pop a byte from the stack.
  fn pop(&mut self) -> u8;

  /// Push a word (little-endian) onto the stack.
  fn push_word(&mut self, value: u16);

  /// Pop a word (little-endian) from the stack.
  fn pop_word(&mut self) -> u16;
}

impl Stack for Mos6502 {
  fn push(&mut self, value: u8) {
    self.write(self.registers.sp.address(), value);
    self.registers.sp.push();
  }

  fn pop(&mut self) -> u8 {
    self.registers.sp.pop();
    self.read(self.registers.sp.address())
  }

  fn push_word(&mut self, value: u16) {
    self.push((value >> 8) as u8);
    self.push((value & 0xFF) as u8);
  }

  fn pop_word(&mut self) -> u16 {
    let lo = self.pop();
    let hi = self.pop();
    (hi as u16) << 8 | lo as u16
  }
}

/// Handle interrupts by setting the applicable flags, pushing the program counter
/// onto the stack, and loading the interrupt vector into the program counter.
pub trait InterruptHandler {
  fn interrupt(&mut self, maskable: bool, set_brk: bool);
}

impl InterruptHandler for Mos6502 {
  fn interrupt(&mut self, maskable: bool, break_instr: bool) {
    if maskable && !break_instr && self.registers.sr.read(flags::INTERRUPT) {
      return;
    }

    self.push_word(self.registers.pc.address());

    if break_instr {
      self.push(self.registers.sr.get() | flags::BREAK);
    } else {
      self.push(self.registers.sr.get() & !flags::BREAK);
    }

    if let Mos6502Variant::CMOS = self.variant {
      self.registers.sr.clear(flags::DECIMAL);
    }

    self.registers.sr.set(flags::INTERRUPT);

    let dest = match maskable {
      false => self.read_word(0xFFFA),
      true => self.read_word(0xFFFE),
    };

    self.registers.pc.load(dest);
  }
}

impl Mos6502 {
  pub fn new(memory: impl Memory + 'static, variant: Mos6502Variant) -> Mos6502 {
    Mos6502 {
      registers: Registers::new(),
      memory: Box::new(memory),
      cycle_count: 0,
      cycles_since_poll: 0,
      variant,
      trace: None,
    }
  }
}

impl Cpu for Mos6502 {
  fn reset(&mut self) {
    self.memory.reset();
    self.registers.reset();
    let pc_address = self.read_word(0xFFFC);
    self.registers.pc.load(pc_address);
  }

  /// Return a SystemInfo struct containing the current system status.
  fn get_cycle_count(&self) -> u64 {
    self.cycle_count
  }

  fn attach_trace_handler(&mut self, trace: Box<dyn TraceHandler>) {
    self.trace = Some(trace);
  }

  /// Execute a single instruction.
  fn tick(&mut self) -> u8 {
    let opcode = self.fetch();

    if let Some(tracer) = &mut self.trace {
      tracer.handle(&CpuTrace {
        address: self.registers.pc.address(),
        opcode,
      });
    }

    match self.execute(opcode) {
      Ok(cycles) => {
        self.cycle_count += cycles as u64;
        self.cycles_since_poll += cycles as u64;

        if self.cycles_since_poll >= CLOCKS_PER_POLL {
          let total_cycle_count = self.get_cycle_count();

          match self.memory.poll(self.cycles_since_poll, total_cycle_count) {
            ActiveInterrupt::None => (),
            ActiveInterrupt::NMI => self.interrupt(false, false),
            ActiveInterrupt::IRQ => self.interrupt(true, false),
          }

          self.cycles_since_poll = 0;
        }

        cycles
      }
      Err(_) => {
        panic!(
          "Failed to execute instruction {:02x} at {:04x}",
          opcode,
          self.registers.pc.address()
        );
      }
    }
  }

  fn cleanup(&mut self) -> Result<(), &str> {
    if let Some(tracer) = &mut self.trace {
      tracer.flush()
    } else {
      Ok(())
    }
  }
}