2017-06-04 21:55:19 +00:00
|
|
|
//
|
|
|
|
// ZX8081.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "ZX8081.hpp"
|
|
|
|
|
2017-06-05 14:36:07 +00:00
|
|
|
#include "../MemoryFuzzer.hpp"
|
2017-06-11 20:42:49 +00:00
|
|
|
#include "../../Storage/Tape/Parsers/ZX8081.hpp"
|
2017-06-05 13:38:49 +00:00
|
|
|
|
2017-06-04 21:55:19 +00:00
|
|
|
using namespace ZX8081;
|
|
|
|
|
2017-06-06 14:13:32 +00:00
|
|
|
namespace {
|
2017-06-11 20:42:49 +00:00
|
|
|
// The clock rate is 3.25Mhz.
|
2017-06-06 14:13:32 +00:00
|
|
|
const unsigned int ZX8081ClockRate = 3250000;
|
|
|
|
}
|
|
|
|
|
2017-06-04 22:32:23 +00:00
|
|
|
Machine::Machine() :
|
2017-06-05 01:54:55 +00:00
|
|
|
vsync_(false),
|
|
|
|
hsync_(false),
|
2017-06-05 14:47:42 +00:00
|
|
|
ram_(1024),
|
2017-06-06 14:13:32 +00:00
|
|
|
key_states_{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
|
|
tape_player_(ZX8081ClockRate) {
|
|
|
|
set_clock_rate(ZX8081ClockRate);
|
2017-06-05 14:36:07 +00:00
|
|
|
Memory::Fuzz(ram_);
|
2017-06-06 14:13:32 +00:00
|
|
|
tape_player_.set_motor_control(true);
|
2017-06-04 21:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int Machine::perform_machine_cycle(const CPU::Z80::MachineCycle &cycle) {
|
2017-06-06 21:53:23 +00:00
|
|
|
video_->run_for_cycles(cycle.length);
|
2017-06-06 14:13:32 +00:00
|
|
|
tape_player_.run_for_cycles(cycle.length);
|
2017-06-04 22:32:23 +00:00
|
|
|
|
2017-06-06 13:03:09 +00:00
|
|
|
uint16_t refresh = 0;
|
2017-06-05 13:38:49 +00:00
|
|
|
uint16_t address = cycle.address ? *cycle.address : 0;
|
2017-06-04 22:32:23 +00:00
|
|
|
switch(cycle.operation) {
|
|
|
|
case CPU::Z80::BusOperation::Output:
|
2017-06-11 20:42:49 +00:00
|
|
|
set_vsync(false);
|
|
|
|
line_counter_ = 0;
|
2017-06-04 22:32:23 +00:00
|
|
|
break;
|
|
|
|
|
2017-06-06 13:25:18 +00:00
|
|
|
case CPU::Z80::BusOperation::Input: {
|
|
|
|
uint8_t value = 0xff;
|
2017-06-06 14:13:32 +00:00
|
|
|
if(!(address&1)) {
|
2017-06-05 01:54:55 +00:00
|
|
|
set_vsync(true);
|
2017-06-06 13:25:18 +00:00
|
|
|
|
|
|
|
uint16_t mask = 0x100;
|
|
|
|
for(int c = 0; c < 8; c++) {
|
|
|
|
if(!(address & mask)) value &= key_states_[c];
|
|
|
|
mask <<= 1;
|
|
|
|
}
|
2017-06-06 14:13:32 +00:00
|
|
|
|
2017-06-06 22:38:05 +00:00
|
|
|
value &= ~(tape_player_.get_input() ? 0x00 : 0x80);
|
2017-06-04 22:32:23 +00:00
|
|
|
}
|
2017-06-06 13:25:18 +00:00
|
|
|
*cycle.value = value;
|
|
|
|
} break;
|
2017-06-04 22:32:23 +00:00
|
|
|
|
|
|
|
case CPU::Z80::BusOperation::Interrupt:
|
2017-06-05 01:54:55 +00:00
|
|
|
set_hsync(true);
|
2017-06-06 12:55:07 +00:00
|
|
|
line_counter_ = (line_counter_ + 1) & 7;
|
2017-06-04 22:32:23 +00:00
|
|
|
*cycle.value = 0xff;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CPU::Z80::BusOperation::ReadOpcode:
|
2017-06-05 01:54:55 +00:00
|
|
|
set_hsync(false);
|
2017-06-11 20:42:49 +00:00
|
|
|
|
|
|
|
// The ZX80 and 81 signal an interrupt while refresh is active and bit 6 of the refresh
|
|
|
|
// address is low. The Z80 signals a refresh, providing the refresh address during the
|
|
|
|
// final two cycles of an opcode fetch. Therefore communicate a transient signalling
|
|
|
|
// of the IRQ line if necessary.
|
2017-06-06 13:03:09 +00:00
|
|
|
refresh = get_value_of_register(CPU::Z80::Register::Refresh);
|
2017-06-11 17:32:20 +00:00
|
|
|
set_interrupt_line(!(refresh & 0x40), -2);
|
2017-06-11 20:42:49 +00:00
|
|
|
set_interrupt_line(false);
|
|
|
|
|
|
|
|
// Check for use of the fast tape hack.
|
|
|
|
if(address == tape_trap_address_) { // TODO: && fast_tape_hack_enabled_
|
|
|
|
Storage::Tape::ZX8081::Parser parser;
|
|
|
|
int next_byte = parser.get_next_byte(tape_player_.get_tape());
|
|
|
|
if(next_byte != -1) {
|
|
|
|
uint16_t hl = get_value_of_register(CPU::Z80::Register::HL);
|
|
|
|
ram_[hl & 1023] = (uint8_t)next_byte;
|
|
|
|
*cycle.value = 0x00;
|
|
|
|
set_value_of_register(CPU::Z80::Register::ProgramCounter, tape_return_address_);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-04 22:32:23 +00:00
|
|
|
case CPU::Z80::BusOperation::Read:
|
2017-06-05 13:38:49 +00:00
|
|
|
if((address & 0xc000) == 0x0000) *cycle.value = rom_[address & (rom_.size() - 1)];
|
|
|
|
else if((address & 0x4000) == 0x4000) {
|
|
|
|
uint8_t value = ram_[address & 1023];
|
|
|
|
if(address&0x8000 && !(value & 0x40) && cycle.operation == CPU::Z80::BusOperation::ReadOpcode && !get_halt_line()) {
|
2017-06-06 13:03:09 +00:00
|
|
|
size_t char_address = (size_t)((refresh & 0xff00) | ((value & 0x3f) << 3) | line_counter_);
|
2017-06-06 12:55:07 +00:00
|
|
|
if((char_address & 0xc000) == 0x0000) {
|
2017-06-06 13:03:09 +00:00
|
|
|
uint8_t mask = (value & 0x80) ? 0x00 : 0xff;
|
2017-06-06 12:55:07 +00:00
|
|
|
value = rom_[char_address & (rom_.size() - 1)] ^ mask;
|
|
|
|
}
|
|
|
|
|
2017-06-06 21:53:23 +00:00
|
|
|
video_->output_byte(value);
|
2017-06-04 22:32:23 +00:00
|
|
|
*cycle.value = 0;
|
2017-06-05 14:36:07 +00:00
|
|
|
} else *cycle.value = value;
|
2017-06-04 22:32:23 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CPU::Z80::BusOperation::Write:
|
2017-06-05 13:38:49 +00:00
|
|
|
if((address & 0x4000) == 0x4000) ram_[address & 1023] = *cycle.value;
|
2017-06-04 22:32:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2017-06-04 21:55:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-04 22:08:35 +00:00
|
|
|
void Machine::flush() {
|
2017-06-06 21:53:23 +00:00
|
|
|
video_->flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::setup_output(float aspect_ratio) {
|
|
|
|
video_.reset(new Video);
|
2017-06-04 22:08:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-04 21:55:19 +00:00
|
|
|
void Machine::close_output() {
|
2017-06-06 21:53:23 +00:00
|
|
|
video_.reset();
|
2017-06-04 21:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Outputs::CRT::CRT> Machine::get_crt() {
|
2017-06-06 21:53:23 +00:00
|
|
|
return video_->get_crt();
|
2017-06-04 21:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Outputs::Speaker> Machine::get_speaker() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::run_for_cycles(int number_of_cycles) {
|
2017-06-04 22:37:13 +00:00
|
|
|
CPU::Z80::Processor<Machine>::run_for_cycles(number_of_cycles);
|
2017-06-04 21:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::configure_as_target(const StaticAnalyser::Target &target) {
|
2017-06-06 22:16:27 +00:00
|
|
|
// TODO: pay attention to the target; it can't currently specify a ZX81
|
|
|
|
// so assume a ZX80 if we got here.
|
2017-06-11 20:42:49 +00:00
|
|
|
if(true) {
|
|
|
|
rom_ = zx80_rom_;
|
|
|
|
tape_trap_address_ = 0x220;
|
|
|
|
tape_return_address_ = 0x248;
|
|
|
|
} else {
|
|
|
|
rom_ = zx81_rom_;
|
|
|
|
tape_trap_address_ = 0x37c;
|
|
|
|
tape_return_address_ = 0x380;
|
|
|
|
}
|
2017-06-06 14:13:32 +00:00
|
|
|
|
|
|
|
if(target.tapes.size()) {
|
|
|
|
tape_player_.set_tape(target.tapes.front());
|
|
|
|
}
|
2017-06-04 21:55:19 +00:00
|
|
|
}
|
2017-06-04 22:08:35 +00:00
|
|
|
|
|
|
|
void Machine::set_rom(ROMType type, std::vector<uint8_t> data) {
|
|
|
|
switch(type) {
|
|
|
|
case ZX80: zx80_rom_ = data; break;
|
|
|
|
case ZX81: zx81_rom_ = data; break;
|
|
|
|
}
|
|
|
|
}
|
2017-06-04 22:32:23 +00:00
|
|
|
|
|
|
|
#pragma mark - Video
|
|
|
|
|
2017-06-05 01:54:55 +00:00
|
|
|
void Machine::set_vsync(bool sync) {
|
|
|
|
vsync_ = sync;
|
2017-06-05 14:47:42 +00:00
|
|
|
update_sync();
|
2017-06-05 01:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::set_hsync(bool sync) {
|
|
|
|
hsync_ = sync;
|
2017-06-05 14:47:42 +00:00
|
|
|
update_sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::update_sync() {
|
2017-06-06 21:53:23 +00:00
|
|
|
video_->set_sync(vsync_ || hsync_);
|
2017-06-06 12:59:00 +00:00
|
|
|
}
|
2017-06-06 13:25:18 +00:00
|
|
|
|
|
|
|
#pragma mark - Keyboard
|
|
|
|
|
|
|
|
void Machine::set_key_state(uint16_t key, bool isPressed) {
|
|
|
|
if(isPressed)
|
|
|
|
key_states_[key >> 8] &= (uint8_t)(~key);
|
|
|
|
else
|
|
|
|
key_states_[key >> 8] |= (uint8_t)key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::clear_all_keys() {
|
|
|
|
memset(key_states_, 0xff, 8);
|
|
|
|
}
|