1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 21:29:53 +00:00
CLK/Machines/Enterprise/Nick.cpp

119 lines
3.4 KiB
C++
Raw Normal View History

2021-06-15 02:19:25 +00:00
//
// Nick.cpp
// Clock Signal
//
// Created by Thomas Harte on 14/06/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#include "Nick.hpp"
#include <cstdio>
using namespace Enterprise;
Nick::Nick(const uint8_t *ram) :
crt_(16 * 57, 16, Outputs::Display::Type::PAL50, Outputs::Display::InputDataType::Red4Green4Blue4),
ram_(ram) {
2021-06-15 03:11:48 +00:00
// Just use RGB for now.
crt_.set_display_type(Outputs::Display::DisplayType::RGB);
}
2021-06-15 02:19:25 +00:00
void Nick::write(uint16_t address, uint8_t value) {
printf("Nick write: %02x -> %d\n", value, address & 3);
2021-06-15 02:19:25 +00:00
switch(address & 3) {
default:
printf("Unhandled\n");
break;
case 2:
line_parameter_base_ = uint16_t((line_parameter_base_ & 0xf000) | (value << 4));
break;
case 3:
line_parameter_base_ = uint16_t((line_parameter_base_ & 0x0ff0) | (value << 12));
// Still a mystery to me: the exact meaning of the top two bits here. For now
// just treat a 0 -> 1 transition of the MSB as a forced frame restart.
if((value^line_parameter_control_) & value & 0x80) {
printf("Should restart frame from %04x\n", line_parameter_base_);
// For now: just force this to be the final line of this mode block.
// I'm unclear whether I should also reset the horizontal counter
// (i.e. completely abandon current video phase).
lines_remaining_ = 0xff;
line_parameters_[1] |= 1;
}
line_parameter_control_ = value & 0xc0;
2021-06-15 02:19:25 +00:00
break;
}
}
uint8_t Nick::read([[maybe_unused]] uint16_t address) {
return 0xff;
}
void Nick::run_for(HalfCycles duration) {
constexpr int line_length = 912;
int clocks_remaining = duration.as<int>();
while(clocks_remaining) {
// Determine how many cycles are left this line.
const int clocks_this_line = std::min(clocks_remaining, line_length - horizontal_counter_);
// Convert that into a [start/current] and end window.
int window = horizontal_counter_ >> 4;
const int end_window = (horizontal_counter_ + clocks_this_line) >> 4;
// Advance the line counters.
clocks_remaining -= clocks_this_line;
horizontal_counter_ = (horizontal_counter_ + clocks_this_line) % line_length;
// Do nothing if a window boundary isn't crossed.
if(window == end_window) continue;
// If this is within the first 8 cycles of the line, [possibly] fetch
// the relevant part of the line parameters.
if(should_reload_line_parameters_ && window < 8) {
int fetch_spot = window;
while(fetch_spot < end_window && fetch_spot < 8) {
line_parameters_[(fetch_spot << 1)] = ram_[line_parameter_pointer_];
line_parameters_[(fetch_spot << 1) + 1] = ram_[line_parameter_pointer_ + 1];
line_parameter_pointer_ += 2;
++fetch_spot;
}
// If all parameters have been loaded, set appropriate fields.
if(fetch_spot == 8) {
should_reload_line_parameters_ = false;
// Set length of mode line.
lines_remaining_ = line_parameters_[0];
}
}
// Check for end of line.
if(!horizontal_counter_) {
++lines_remaining_;
if(!lines_remaining_) {
should_reload_line_parameters_ = true;
// Check for end-of-frame.
if(line_parameters_[1] & 1) {
line_parameter_pointer_ = line_parameter_base_;
}
}
}
}
2021-06-15 03:11:48 +00:00
}
// MARK: - CRT passthroughs.
void Nick::set_scan_target(Outputs::Display::ScanTarget *scan_target) {
crt_.set_scan_target(scan_target);
}
2021-06-15 02:19:25 +00:00
2021-06-15 03:11:48 +00:00
Outputs::Display::ScanStatus Nick::get_scaled_scan_status() const {
return crt_.get_scaled_scan_status();
2021-06-15 02:19:25 +00:00
}