1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-01-23 16:16:16 +00:00

Restore build.

This commit is contained in:
Thomas Harte
2025-11-03 17:47:22 -05:00
parent c8130f9d6f
commit ee6ac3b4a9

View File

@@ -45,6 +45,14 @@ public:
std::copy(source.begin(), source.end(), &ram_[65536 - 2048]);
}
void set_tube_irq() {
m6502_.set<CPU::MOS6502Mk2::Line::IRQ>(true);
}
void set_tube_nmi() {
m6502_.set<CPU::MOS6502Mk2::Line::NMI>(true);
}
private:
uint8_t ram_[65536];
Cycles cycles_modulo_;