2017-05-17 01:19:17 +00:00
|
|
|
//
|
|
|
|
// Z80AllRAM.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 16/05/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Z80AllRAM.hpp"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using namespace CPU::Z80;
|
2017-05-31 02:41:23 +00:00
|
|
|
namespace {
|
2017-05-17 01:19:17 +00:00
|
|
|
|
2017-05-31 02:41:23 +00:00
|
|
|
class ConcreteAllRAMProcessor: public AllRAMProcessor, public Processor<ConcreteAllRAMProcessor> {
|
|
|
|
public:
|
2017-06-19 02:03:13 +00:00
|
|
|
ConcreteAllRAMProcessor() : AllRAMProcessor() {}
|
2017-05-31 02:41:23 +00:00
|
|
|
|
2017-07-26 02:25:44 +00:00
|
|
|
inline Cycles perform_machine_cycle(const PartialMachineCycle &cycle) {
|
2017-07-28 00:17:13 +00:00
|
|
|
timestamp_ += cycle.length;
|
2017-06-22 00:32:08 +00:00
|
|
|
if(!cycle.is_terminal()) {
|
2017-07-26 02:25:44 +00:00
|
|
|
return Cycles(0);
|
2017-06-22 00:32:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t address = cycle.address ? *cycle.address : 0x0000;
|
|
|
|
switch(cycle.operation) {
|
2017-07-28 00:17:13 +00:00
|
|
|
case PartialMachineCycle::ReadOpcode:
|
2017-06-22 00:32:08 +00:00
|
|
|
check_address_for_trap(address);
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Read:
|
2017-06-22 00:32:08 +00:00
|
|
|
*cycle.value = memory_[address];
|
|
|
|
break;
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Write:
|
2017-06-22 00:32:08 +00:00
|
|
|
memory_[address] = *cycle.value;
|
|
|
|
break;
|
|
|
|
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Output:
|
2017-06-22 00:32:08 +00:00
|
|
|
break;
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Input:
|
2017-06-22 00:32:08 +00:00
|
|
|
// This logic is selected specifically because it seems to match
|
|
|
|
// the FUSE unit tests. It might need factoring out.
|
|
|
|
*cycle.value = address >> 8;
|
|
|
|
break;
|
|
|
|
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Internal:
|
|
|
|
case PartialMachineCycle::Refresh:
|
2017-06-22 00:32:08 +00:00
|
|
|
break;
|
|
|
|
|
2017-06-22 00:38:08 +00:00
|
|
|
case PartialMachineCycle::Interrupt:
|
2017-06-22 00:32:08 +00:00
|
|
|
// A pick that means LD HL, (nn) if interpreted as an instruction but is otherwise
|
|
|
|
// arbitrary.
|
|
|
|
*cycle.value = 0x21;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("???\n");
|
|
|
|
break;
|
|
|
|
}
|
2017-05-31 02:41:23 +00:00
|
|
|
|
|
|
|
if(delegate_ != nullptr) {
|
2017-07-28 00:17:13 +00:00
|
|
|
delegate_->z80_all_ram_processor_did_perform_bus_operation(*this, cycle.operation, address, cycle.value ? *cycle.value : 0x00, timestamp_);
|
2017-05-31 02:41:23 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 02:25:44 +00:00
|
|
|
return Cycles(0);
|
2017-05-31 02:41:23 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 02:21:39 +00:00
|
|
|
void run_for(const Cycles &cycles) {
|
|
|
|
CPU::Z80::Processor<ConcreteAllRAMProcessor>::run_for(cycles);
|
2017-05-31 02:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t get_value_of_register(Register r) {
|
|
|
|
return CPU::Z80::Processor<ConcreteAllRAMProcessor>::get_value_of_register(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_value_of_register(Register r, uint16_t value) {
|
|
|
|
CPU::Z80::Processor<ConcreteAllRAMProcessor>::set_value_of_register(r, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get_halt_line() {
|
|
|
|
return CPU::Z80::Processor<ConcreteAllRAMProcessor>::get_halt_line();
|
|
|
|
}
|
2017-06-02 02:33:05 +00:00
|
|
|
|
|
|
|
void reset_power_on() {
|
|
|
|
return CPU::Z80::Processor<ConcreteAllRAMProcessor>::reset_power_on();
|
|
|
|
}
|
2017-06-03 21:41:45 +00:00
|
|
|
|
|
|
|
void set_interrupt_line(bool value) {
|
|
|
|
CPU::Z80::Processor<ConcreteAllRAMProcessor>::set_interrupt_line(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_non_maskable_interrupt_line(bool value) {
|
|
|
|
CPU::Z80::Processor<ConcreteAllRAMProcessor>::set_non_maskable_interrupt_line(value);
|
|
|
|
}
|
2017-06-23 01:09:26 +00:00
|
|
|
|
|
|
|
void set_wait_line(bool value) {
|
|
|
|
CPU::Z80::Processor<ConcreteAllRAMProcessor>::set_wait_line(value);
|
|
|
|
}
|
2017-05-31 02:41:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
AllRAMProcessor *AllRAMProcessor::Processor() {
|
|
|
|
return new ConcreteAllRAMProcessor;
|
2017-05-17 01:19:17 +00:00
|
|
|
}
|