1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Forces 6502 consumers to declare which model — the original, 65C02 or 65SC02.

All present machines use a regular 6502.
This commit is contained in:
Thomas Harte
2018-08-06 20:06:07 -04:00
parent c1d1c451ef
commit 76a73c835c
7 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class ConcreteMachine:
public Activity::Source {
public:
ConcreteMachine(const Analyser::Static::Acorn::Target &target, const ROMMachine::ROMFetcher &rom_fetcher) :
m6502_(*this),
m6502_(CPU::MOS6502::Personality::P6502, *this),
sound_generator_(audio_queue_),
speaker_(sound_generator_) {
memset(key_states_, 0, sizeof(key_states_));