1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Restored the all RAM 6502's lack of power-on reset.

This commit is contained in:
Thomas Harte 2017-05-17 21:43:40 -04:00
parent 64d6ee1be5
commit 21d0602305

View File

@ -12,7 +12,9 @@
using namespace CPU::MOS6502;
AllRAMProcessor::AllRAMProcessor() : ::CPU::AllRAMProcessor(65536) {}
AllRAMProcessor::AllRAMProcessor() : ::CPU::AllRAMProcessor(65536) {
set_power_on(false);
}
int AllRAMProcessor::perform_bus_operation(MOS6502::BusOperation operation, uint16_t address, uint8_t *value) {
timestamp_++;