2016-10-12 02:20:13 +00:00
|
|
|
//
|
|
|
|
// Oric.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 11/10/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Oric.hpp"
|
2017-08-03 15:42:31 +00:00
|
|
|
|
2017-10-21 14:52:35 +00:00
|
|
|
#include "Keyboard.hpp"
|
2017-10-13 02:25:02 +00:00
|
|
|
#include "Microdisc.hpp"
|
|
|
|
#include "Video.hpp"
|
2017-08-16 18:35:53 +00:00
|
|
|
|
2018-03-09 20:19:02 +00:00
|
|
|
#include "../ConfigurationTarget.hpp"
|
|
|
|
#include "../CRTMachine.hpp"
|
|
|
|
#include "../KeyboardMachine.hpp"
|
|
|
|
|
2017-10-21 14:30:02 +00:00
|
|
|
#include "../Utility/MemoryFuzzer.hpp"
|
|
|
|
#include "../Utility/Typer.hpp"
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
#include "../../Processors/6502/6502.hpp"
|
|
|
|
#include "../../Components/6522/6522.hpp"
|
|
|
|
#include "../../Components/AY38910/AY38910.hpp"
|
2017-08-03 15:42:31 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
#include "../../Storage/Tape/Tape.hpp"
|
|
|
|
#include "../../Storage/Tape/Parsers/Oric.hpp"
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
#include "../../ClockReceiver/ForceInline.hpp"
|
2017-11-21 02:55:32 +00:00
|
|
|
#include "../../Configurable/StandardOptions.hpp"
|
2017-12-19 02:39:23 +00:00
|
|
|
#include "../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp"
|
2017-08-22 01:56:42 +00:00
|
|
|
|
2018-03-09 21:07:29 +00:00
|
|
|
#include "../../Analyser/Static/Oric/Target.hpp"
|
|
|
|
|
2017-11-24 21:59:00 +00:00
|
|
|
#include <cstdint>
|
2017-08-16 18:35:53 +00:00
|
|
|
#include <memory>
|
2017-11-24 21:59:00 +00:00
|
|
|
#include <vector>
|
2017-08-16 18:35:53 +00:00
|
|
|
|
|
|
|
namespace Oric {
|
|
|
|
|
2017-11-24 21:59:00 +00:00
|
|
|
enum ROM {
|
|
|
|
BASIC10 = 0, BASIC11, Microdisc, Colour
|
|
|
|
};
|
|
|
|
|
2017-11-21 02:55:32 +00:00
|
|
|
std::vector<std::unique_ptr<Configurable::Option>> get_options() {
|
|
|
|
return Configurable::standard_options(
|
|
|
|
static_cast<Configurable::StandardOptions>(Configurable::DisplayRGBComposite | Configurable::QuickLoadTape)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-09-04 22:22:14 +00:00
|
|
|
/*!
|
|
|
|
Models the Oric's keyboard: eight key rows, containing a bitfield of keys set.
|
|
|
|
|
|
|
|
Active line is selected through a port on the Oric's VIA, and a column mask is
|
|
|
|
selected via a port on the AY, returning a single Boolean representation of the
|
|
|
|
logical OR of every key selected by the column mask on the active row.
|
|
|
|
*/
|
|
|
|
class Keyboard {
|
|
|
|
public:
|
|
|
|
Keyboard() {
|
|
|
|
clear_all_keys();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets whether @c key is or is not pressed, per @c is_pressed.
|
|
|
|
void set_key_state(uint16_t key, bool is_pressed) {
|
|
|
|
uint8_t mask = key & 0xff;
|
|
|
|
int line = key >> 8;
|
|
|
|
|
|
|
|
if(is_pressed) rows_[line] |= mask;
|
|
|
|
else rows_[line] &= ~mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets all keys as unpressed.
|
|
|
|
void clear_all_keys() {
|
|
|
|
memset(rows_, 0, sizeof(rows_));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Selects the active row.
|
|
|
|
void set_active_row(uint8_t row) {
|
|
|
|
row_ = row & 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Queries the keys on the active row specified by @c mask.
|
|
|
|
bool query_column(uint8_t column_mask) {
|
|
|
|
return !!(rows_[row_] & column_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t row_ = 0;
|
|
|
|
uint8_t rows_[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provide's the Oric's tape player: a standard binary-sampled tape which also holds
|
|
|
|
an instance of the Oric tape parser, to provide fast-tape loading.
|
|
|
|
*/
|
|
|
|
class TapePlayer: public Storage::Tape::BinaryTapePlayer {
|
|
|
|
public:
|
|
|
|
TapePlayer() : Storage::Tape::BinaryTapePlayer(1000000) {}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Parses the incoming tape event stream to obtain the next stored byte.
|
|
|
|
|
|
|
|
@param use_fast_encoding If set to @c true , inspects the tape as though it
|
|
|
|
is encoded in the Oric's fast-loading scheme. Otherwise looks for a slow-encoded byte.
|
|
|
|
|
|
|
|
@returns The next byte from the tape.
|
|
|
|
*/
|
|
|
|
uint8_t get_next_byte(bool use_fast_encoding) {
|
2017-10-22 01:50:53 +00:00
|
|
|
return static_cast<uint8_t>(parser_.get_next_byte(get_tape(), use_fast_encoding));
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Storage::Tape::Oric::Parser parser_;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Implements the Oric's VIA's port handler. On the Oric the VIA's ports connect
|
|
|
|
to the AY, the tape's motor control signal and the keyboard.
|
|
|
|
*/
|
|
|
|
class VIAPortHandler: public MOS::MOS6522::IRQDelegatePortHandler {
|
|
|
|
public:
|
2017-12-18 02:26:06 +00:00
|
|
|
VIAPortHandler(Concurrency::DeferringAsyncTaskQueue &audio_queue, GI::AY38910::AY38910 &ay8910, Outputs::Speaker::LowpassSpeaker<GI::AY38910::AY38910> &speaker, TapePlayer &tape_player, Keyboard &keyboard) :
|
|
|
|
audio_queue_(audio_queue), ay8910_(ay8910), speaker_(speaker), tape_player_(tape_player), keyboard_(keyboard) {}
|
2017-09-04 22:22:14 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
Reponds to the 6522's control line output change signal; on an Oric A2 is connected to
|
|
|
|
the AY's BDIR, and B2 is connected to the AY's A2.
|
|
|
|
*/
|
|
|
|
void set_control_line_output(MOS::MOS6522::Port port, MOS::MOS6522::Line line, bool value) {
|
|
|
|
if(line) {
|
|
|
|
if(port) ay_bdir_ = value; else ay_bc1_ = value;
|
|
|
|
update_ay();
|
2017-12-18 02:26:06 +00:00
|
|
|
ay8910_.set_control_lines( (GI::AY38910::ControlLines)((ay_bdir_ ? GI::AY38910::BDIR : 0) | (ay_bc1_ ? GI::AY38910::BC1 : 0) | GI::AY38910::BC2));
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Reponds to changes in the 6522's port output. On an Oric port B sets the tape motor control
|
|
|
|
and the keyboard's active row. Port A is connected to the AY's data bus.
|
|
|
|
*/
|
|
|
|
void set_port_output(MOS::MOS6522::Port port, uint8_t value, uint8_t direction_mask) {
|
|
|
|
if(port) {
|
|
|
|
keyboard_.set_active_row(value);
|
|
|
|
tape_player_.set_motor_control(value & 0x40);
|
|
|
|
} else {
|
|
|
|
update_ay();
|
2017-12-18 02:26:06 +00:00
|
|
|
ay8910_.set_data_input(value);
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provides input data for the 6522. Port B reads the keyboard, and port A reads from the AY.
|
|
|
|
*/
|
|
|
|
uint8_t get_port_input(MOS::MOS6522::Port port) {
|
|
|
|
if(port) {
|
2017-12-18 02:26:06 +00:00
|
|
|
uint8_t column = ay8910_.get_port_output(false) ^ 0xff;
|
2017-09-04 22:22:14 +00:00
|
|
|
return keyboard_.query_column(column) ? 0x08 : 0x00;
|
|
|
|
} else {
|
2017-12-18 02:26:06 +00:00
|
|
|
return ay8910_.get_data_output();
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Advances time. This class manages the AY's concept of time to permit updating-on-demand.
|
|
|
|
*/
|
|
|
|
inline void run_for(const Cycles cycles) {
|
|
|
|
cycles_since_ay_update_ += cycles;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Flushes any queued behaviour (which, specifically, means on the AY).
|
|
|
|
void flush() {
|
2017-12-18 02:26:06 +00:00
|
|
|
update_ay();
|
|
|
|
audio_queue_.perform();
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void update_ay() {
|
2017-12-18 02:26:06 +00:00
|
|
|
speaker_.run_for(audio_queue_, cycles_since_ay_update_.flush());
|
2017-09-04 22:22:14 +00:00
|
|
|
}
|
|
|
|
bool ay_bdir_ = false;
|
|
|
|
bool ay_bc1_ = false;
|
|
|
|
Cycles cycles_since_ay_update_;
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
Concurrency::DeferringAsyncTaskQueue &audio_queue_;
|
|
|
|
GI::AY38910::AY38910 &ay8910_;
|
|
|
|
Outputs::Speaker::LowpassSpeaker<GI::AY38910::AY38910> &speaker_;
|
2017-09-04 22:22:14 +00:00
|
|
|
TapePlayer &tape_player_;
|
|
|
|
Keyboard &keyboard_;
|
|
|
|
};
|
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
class ConcreteMachine:
|
2018-03-09 20:19:02 +00:00
|
|
|
public CRTMachine::Machine,
|
|
|
|
public ConfigurationTarget::Machine,
|
|
|
|
public KeyboardMachine::Machine,
|
|
|
|
public Configurable::Device,
|
2017-08-16 18:35:53 +00:00
|
|
|
public CPU::MOS6502::BusHandler,
|
2017-09-04 18:26:04 +00:00
|
|
|
public MOS::MOS6522::IRQDelegatePortHandler::Delegate,
|
2017-08-16 18:35:53 +00:00
|
|
|
public Utility::TypeRecipient,
|
|
|
|
public Storage::Tape::BinaryTapePlayer::Delegate,
|
|
|
|
public Microdisc::Delegate,
|
|
|
|
public Machine {
|
|
|
|
|
|
|
|
public:
|
|
|
|
ConcreteMachine() :
|
|
|
|
m6502_(*this),
|
2017-12-18 02:26:06 +00:00
|
|
|
ay8910_(audio_queue_),
|
|
|
|
speaker_(ay8910_),
|
|
|
|
via_port_handler_(audio_queue_, ay8910_, speaker_, tape_player_, keyboard_),
|
2017-09-04 22:22:14 +00:00
|
|
|
via_(via_port_handler_),
|
2017-11-11 03:47:10 +00:00
|
|
|
paged_rom_(rom_) {
|
2017-08-16 18:35:53 +00:00
|
|
|
set_clock_rate(1000000);
|
2017-09-04 18:26:04 +00:00
|
|
|
via_port_handler_.set_interrupt_delegate(this);
|
2017-09-04 22:22:14 +00:00
|
|
|
tape_player_.set_delegate(this);
|
2017-08-16 18:35:53 +00:00
|
|
|
Memory::Fuzz(ram_, sizeof(ram_));
|
|
|
|
}
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2018-03-23 01:59:19 +00:00
|
|
|
~ConcreteMachine() {
|
|
|
|
audio_queue_.flush();
|
|
|
|
}
|
|
|
|
|
2017-11-07 03:14:15 +00:00
|
|
|
// Obtains the system ROMs.
|
2017-11-08 02:19:51 +00:00
|
|
|
bool set_rom_fetcher(const std::function<std::vector<std::unique_ptr<std::vector<uint8_t>>>(const std::string &machine, const std::vector<std::string> &names)> &roms_with_names) override {
|
|
|
|
auto roms = roms_with_names(
|
|
|
|
"Oric",
|
|
|
|
{
|
|
|
|
"basic10.rom", "basic11.rom",
|
|
|
|
"microdisc.rom", "colour.rom"
|
|
|
|
});
|
|
|
|
|
2017-11-11 20:28:40 +00:00
|
|
|
for(std::size_t index = 0; index < roms.size(); ++index) {
|
2017-11-25 03:22:32 +00:00
|
|
|
if(!roms[index]) return false;
|
2017-11-07 03:14:15 +00:00
|
|
|
}
|
2017-11-25 03:22:32 +00:00
|
|
|
|
|
|
|
basic10_rom_ = std::move(*roms[0]);
|
|
|
|
basic11_rom_ = std::move(*roms[1]);
|
|
|
|
microdisc_rom_ = std::move(*roms[2]);
|
|
|
|
colour_rom_ = std::move(*roms[3]);
|
|
|
|
|
|
|
|
basic10_rom_.resize(16384);
|
|
|
|
basic11_rom_.resize(16384);
|
|
|
|
microdisc_rom_.resize(8192);
|
|
|
|
colour_rom_.resize(128);
|
|
|
|
|
|
|
|
if(video_output_) video_output_->set_colour_rom(colour_rom_);
|
2017-11-07 03:14:15 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-04 22:22:14 +00:00
|
|
|
void set_key_state(uint16_t key, bool is_pressed) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
if(key == KeyNMI) {
|
2017-09-04 22:22:14 +00:00
|
|
|
m6502_.set_nmi_line(is_pressed);
|
2017-08-16 18:35:53 +00:00
|
|
|
} else {
|
2017-09-04 22:22:14 +00:00
|
|
|
keyboard_.set_key_state(key, is_pressed);
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-03 15:50:50 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
void clear_all_keys() override final {
|
2017-09-04 22:22:14 +00:00
|
|
|
keyboard_.clear_all_keys();
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-12 22:51:02 +00:00
|
|
|
|
2017-11-24 21:59:00 +00:00
|
|
|
void set_use_fast_tape_hack(bool activate) {
|
2017-08-16 18:35:53 +00:00
|
|
|
use_fast_tape_hack_ = activate;
|
2016-10-31 02:39:47 +00:00
|
|
|
}
|
2017-08-16 18:35:53 +00:00
|
|
|
|
2018-03-30 14:25:41 +00:00
|
|
|
void set_output_device(Outputs::CRT::VideoSignal output_device) {
|
2017-08-16 18:35:53 +00:00
|
|
|
video_output_->set_output_device(output_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
// to satisfy ConfigurationTarget::Machine
|
2018-03-09 20:36:11 +00:00
|
|
|
void configure_as_target(const Analyser::Static::Target *target) override final {
|
2018-03-09 21:07:29 +00:00
|
|
|
auto *const oric_target = dynamic_cast<const Analyser::Static::Oric::Target *>(target);
|
|
|
|
|
|
|
|
if(oric_target->has_microdisc) {
|
2017-08-16 18:35:53 +00:00
|
|
|
microdisc_is_enabled_ = true;
|
|
|
|
microdisc_did_change_paging_flags(µdisc_);
|
|
|
|
microdisc_.set_delegate(this);
|
|
|
|
}
|
2016-11-04 02:14:40 +00:00
|
|
|
|
2018-03-09 20:36:11 +00:00
|
|
|
if(target->loading_command.length()) {
|
|
|
|
type_string(target->loading_command);
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2018-03-09 21:07:29 +00:00
|
|
|
if(oric_target->use_atmos_rom) {
|
2017-11-11 20:28:40 +00:00
|
|
|
std::memcpy(rom_, basic11_rom_.data(), std::min(basic11_rom_.size(), sizeof(rom_)));
|
2016-10-13 01:29:21 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
is_using_basic11_ = true;
|
|
|
|
tape_get_byte_address_ = 0xe6c9;
|
|
|
|
scan_keyboard_address_ = 0xf495;
|
|
|
|
tape_speed_address_ = 0x024d;
|
|
|
|
} else {
|
2017-11-11 20:28:40 +00:00
|
|
|
std::memcpy(rom_, basic10_rom_.data(), std::min(basic10_rom_.size(), sizeof(rom_)));
|
2016-10-12 23:20:23 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
is_using_basic11_ = false;
|
|
|
|
tape_get_byte_address_ = 0xe630;
|
|
|
|
scan_keyboard_address_ = 0xf43c;
|
|
|
|
tape_speed_address_ = 0x67;
|
|
|
|
}
|
2017-08-17 14:48:29 +00:00
|
|
|
|
2018-03-09 20:36:11 +00:00
|
|
|
insert_media(target->media);
|
2017-08-17 14:48:29 +00:00
|
|
|
}
|
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
bool insert_media(const Analyser::Static::Media &media) override final {
|
2017-08-17 14:48:29 +00:00
|
|
|
if(media.tapes.size()) {
|
2017-09-04 22:22:14 +00:00
|
|
|
tape_player_.set_tape(media.tapes.front());
|
2017-08-17 14:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int drive_index = 0;
|
|
|
|
for(auto disk : media.disks) {
|
|
|
|
if(drive_index < 4) microdisc_.set_disk(disk, drive_index);
|
|
|
|
drive_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !media.tapes.empty() || (!media.disks.empty() && microdisc_is_enabled_);
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// to satisfy CPU::MOS6502::BusHandler
|
2017-08-22 01:56:42 +00:00
|
|
|
forceinline Cycles perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
2017-08-16 18:35:53 +00:00
|
|
|
if(address > ram_top_) {
|
|
|
|
if(isReadOperation(operation)) *value = paged_rom_[address - ram_top_ - 1];
|
|
|
|
|
|
|
|
// 024D = 0 => fast; otherwise slow
|
|
|
|
// E6C9 = read byte: return byte in A
|
2017-09-04 22:22:14 +00:00
|
|
|
if( address == tape_get_byte_address_ &&
|
|
|
|
paged_rom_ == rom_ &&
|
|
|
|
use_fast_tape_hack_ &&
|
|
|
|
operation == CPU::MOS6502::BusOperation::ReadOpcode &&
|
|
|
|
tape_player_.has_tape() &&
|
|
|
|
!tape_player_.get_tape()->is_at_end()) {
|
|
|
|
|
|
|
|
uint8_t next_byte = tape_player_.get_next_byte(!ram_[tape_speed_address_]);
|
2017-08-16 18:35:53 +00:00
|
|
|
m6502_.set_value_of_register(CPU::MOS6502::A, next_byte);
|
|
|
|
m6502_.set_value_of_register(CPU::MOS6502::Flags, next_byte ? 0 : CPU::MOS6502::Flag::Zero);
|
|
|
|
*value = 0x60; // i.e. RTS
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if((address & 0xff00) == 0x0300) {
|
|
|
|
if(microdisc_is_enabled_ && address >= 0x0310) {
|
|
|
|
switch(address) {
|
|
|
|
case 0x0310: case 0x0311: case 0x0312: case 0x0313:
|
|
|
|
if(isReadOperation(operation)) *value = microdisc_.get_register(address);
|
|
|
|
else microdisc_.set_register(address, *value);
|
|
|
|
break;
|
|
|
|
case 0x314: case 0x315: case 0x316: case 0x317:
|
|
|
|
if(isReadOperation(operation)) *value = microdisc_.get_interrupt_request_register();
|
|
|
|
else microdisc_.set_control_register(*value);
|
|
|
|
break;
|
|
|
|
case 0x318: case 0x319: case 0x31a: case 0x31b:
|
|
|
|
if(isReadOperation(operation)) *value = microdisc_.get_data_request_register();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(isReadOperation(operation)) *value = via_.get_register(address);
|
|
|
|
else via_.set_register(address, *value);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(isReadOperation(operation))
|
|
|
|
*value = ram_[address];
|
|
|
|
else {
|
2017-09-04 22:22:14 +00:00
|
|
|
if(address >= 0x9800 && address <= 0xc000) update_video();
|
2017-08-16 18:35:53 +00:00
|
|
|
ram_[address] = *value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-14 00:50:55 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
if(typer_ && address == scan_keyboard_address_ && operation == CPU::MOS6502::BusOperation::ReadOpcode) {
|
|
|
|
// the Oric 1 misses any key pressed on the very first entry into the read keyboard routine, so don't
|
|
|
|
// do anything until at least the second, regardless of machine
|
|
|
|
if(!keyboard_read_count_) keyboard_read_count_++;
|
|
|
|
else if(!typer_->type_next_character()) {
|
|
|
|
clear_all_keys();
|
|
|
|
typer_.reset();
|
|
|
|
}
|
|
|
|
}
|
2016-10-15 01:18:03 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
via_.run_for(Cycles(1));
|
2017-09-04 18:26:04 +00:00
|
|
|
via_port_handler_.run_for(Cycles(1));
|
2017-09-04 22:22:14 +00:00
|
|
|
tape_player_.run_for(Cycles(1));
|
2017-08-16 18:35:53 +00:00
|
|
|
if(microdisc_is_enabled_) microdisc_.run_for(Cycles(8));
|
|
|
|
cycles_since_video_update_++;
|
|
|
|
return Cycles(1);
|
|
|
|
}
|
2016-10-15 01:18:03 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
forceinline void flush() {
|
2017-08-16 18:35:53 +00:00
|
|
|
update_video();
|
2017-09-04 18:26:04 +00:00
|
|
|
via_port_handler_.flush();
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-16 01:21:18 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// to satisfy CRTMachine::Machine
|
2017-08-22 01:56:42 +00:00
|
|
|
void setup_output(float aspect_ratio) override final {
|
2017-12-18 02:26:06 +00:00
|
|
|
speaker_.set_input_rate(1000000.0f);
|
2017-09-04 22:22:14 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
video_output_.reset(new VideoOutput(ram_));
|
|
|
|
if(!colour_rom_.empty()) video_output_->set_colour_rom(colour_rom_);
|
2018-03-30 14:25:41 +00:00
|
|
|
set_output_device(Outputs::CRT::VideoSignal::RGB);
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-11-03 11:59:30 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
void close_output() override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
video_output_.reset();
|
|
|
|
}
|
2016-12-10 18:55:56 +00:00
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
Outputs::CRT::CRT *get_crt() override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
return video_output_->get_crt();
|
|
|
|
}
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
Outputs::Speaker::Speaker *get_speaker() override final {
|
|
|
|
return &speaker_;
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-31 02:51:08 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
void run_for(const Cycles cycles) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
m6502_.run_for(cycles);
|
|
|
|
}
|
2016-10-31 02:51:08 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// to satisfy MOS::MOS6522IRQDelegate::Delegate
|
2017-08-22 01:56:42 +00:00
|
|
|
void mos6522_did_change_interrupt_status(void *mos6522) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
set_interrupt_line();
|
|
|
|
}
|
2016-10-31 02:51:08 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// to satisfy Storage::Tape::BinaryTapePlayer::Delegate
|
2017-08-22 01:56:42 +00:00
|
|
|
void tape_did_change_input(Storage::Tape::BinaryTapePlayer *tape_player) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
// set CB1
|
2017-09-04 18:26:04 +00:00
|
|
|
via_.set_control_line_input(MOS::MOS6522::Port::B, MOS::MOS6522::Line::One, !tape_player->get_input());
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// for Utility::TypeRecipient::Delegate
|
2017-12-29 20:26:03 +00:00
|
|
|
void type_string(const std::string &string) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
std::unique_ptr<CharacterMapper> mapper(new CharacterMapper);
|
2017-12-29 20:26:03 +00:00
|
|
|
Utility::TypeRecipient::add_typer(string, std::move(mapper));
|
2017-08-16 18:35:53 +00:00
|
|
|
}
|
2017-03-26 18:34:47 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// for Microdisc::Delegate
|
2017-08-22 01:56:42 +00:00
|
|
|
void microdisc_did_change_paging_flags(class Microdisc *microdisc) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
int flags = microdisc->get_paging_flags();
|
|
|
|
if(!(flags&Microdisc::PagingFlags::BASICDisable)) {
|
|
|
|
ram_top_ = 0xbfff;
|
|
|
|
paged_rom_ = rom_;
|
|
|
|
} else {
|
|
|
|
if(flags&Microdisc::PagingFlags::MicrodscDisable) {
|
|
|
|
ram_top_ = 0xffff;
|
|
|
|
} else {
|
|
|
|
ram_top_ = 0xdfff;
|
|
|
|
paged_rom_ = microdisc_rom_.data();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2017-08-22 01:56:42 +00:00
|
|
|
void wd1770_did_change_output(WD::WD1770 *wd1770) override final {
|
2017-08-16 18:35:53 +00:00
|
|
|
set_interrupt_line();
|
|
|
|
}
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2018-02-09 21:31:05 +00:00
|
|
|
KeyboardMapper *get_keyboard_mapper() override {
|
|
|
|
return &keyboard_mapper_;
|
2017-10-13 02:25:02 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 00:48:10 +00:00
|
|
|
// MARK: - Configuration options.
|
|
|
|
std::vector<std::unique_ptr<Configurable::Option>> get_options() override {
|
2017-11-21 02:55:32 +00:00
|
|
|
return Oric::get_options();
|
2017-11-19 00:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_selections(const Configurable::SelectionSet &selections_by_option) override {
|
2017-11-21 02:55:32 +00:00
|
|
|
bool quickload;
|
|
|
|
if(Configurable::get_quick_load_tape(selections_by_option, quickload)) {
|
|
|
|
set_use_fast_tape_hack(quickload);
|
|
|
|
}
|
2017-11-19 00:48:10 +00:00
|
|
|
|
2017-11-21 02:55:32 +00:00
|
|
|
Configurable::Display display;
|
|
|
|
if(Configurable::get_display(selections_by_option, display)) {
|
2018-03-30 14:25:41 +00:00
|
|
|
set_output_device((display == Configurable::Display::RGB) ? Outputs::CRT::VideoSignal::RGB : Outputs::CRT::VideoSignal::Composite);
|
2017-11-21 02:55:32 +00:00
|
|
|
}
|
2017-11-19 00:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Configurable::SelectionSet get_accurate_selections() override {
|
|
|
|
Configurable::SelectionSet selection_set;
|
2017-11-21 02:55:32 +00:00
|
|
|
Configurable::append_quick_load_tape_selection(selection_set, false);
|
|
|
|
Configurable::append_display_selection(selection_set, Configurable::Display::Composite);
|
2017-11-19 00:48:10 +00:00
|
|
|
return selection_set;
|
|
|
|
}
|
|
|
|
|
|
|
|
Configurable::SelectionSet get_user_friendly_selections() override {
|
|
|
|
Configurable::SelectionSet selection_set;
|
2017-11-21 02:55:32 +00:00
|
|
|
Configurable::append_quick_load_tape_selection(selection_set, true);
|
|
|
|
Configurable::append_display_selection(selection_set, Configurable::Display::RGB);
|
2017-11-19 00:48:10 +00:00
|
|
|
return selection_set;
|
|
|
|
}
|
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
private:
|
2017-08-22 01:56:42 +00:00
|
|
|
CPU::MOS6502::Processor<ConcreteMachine, false> m6502_;
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// RAM and ROM
|
|
|
|
std::vector<uint8_t> basic11_rom_, basic10_rom_, microdisc_rom_, colour_rom_;
|
|
|
|
uint8_t ram_[65536], rom_[16384];
|
|
|
|
Cycles cycles_since_video_update_;
|
|
|
|
inline void update_video() {
|
|
|
|
video_output_->run_for(cycles_since_video_update_.flush());
|
|
|
|
}
|
2016-10-21 00:53:17 +00:00
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// ROM bookkeeping
|
2017-09-04 22:22:14 +00:00
|
|
|
bool is_using_basic11_ = false;
|
|
|
|
uint16_t tape_get_byte_address_ = 0, scan_keyboard_address_ = 0, tape_speed_address_ = 0;
|
|
|
|
int keyboard_read_count_ = 0;
|
2017-08-16 18:35:53 +00:00
|
|
|
|
|
|
|
// Outputs
|
|
|
|
std::unique_ptr<VideoOutput> video_output_;
|
2017-12-18 02:26:06 +00:00
|
|
|
|
|
|
|
Concurrency::DeferringAsyncTaskQueue audio_queue_;
|
|
|
|
GI::AY38910::AY38910 ay8910_;
|
|
|
|
Outputs::Speaker::LowpassSpeaker<GI::AY38910::AY38910> speaker_;
|
2017-08-16 18:35:53 +00:00
|
|
|
|
2017-10-13 02:25:02 +00:00
|
|
|
// Inputs
|
|
|
|
Oric::KeyboardMapper keyboard_mapper_;
|
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
// The tape
|
2017-09-04 22:22:14 +00:00
|
|
|
TapePlayer tape_player_;
|
|
|
|
bool use_fast_tape_hack_ = false;
|
2017-08-16 18:35:53 +00:00
|
|
|
|
2017-09-04 22:22:14 +00:00
|
|
|
VIAPortHandler via_port_handler_;
|
|
|
|
MOS::MOS6522::MOS6522<VIAPortHandler> via_;
|
|
|
|
Keyboard keyboard_;
|
2017-08-16 18:35:53 +00:00
|
|
|
|
|
|
|
// the Microdisc, if in use
|
|
|
|
class Microdisc microdisc_;
|
2017-09-04 22:22:14 +00:00
|
|
|
bool microdisc_is_enabled_ = false;
|
|
|
|
uint16_t ram_top_ = 0xbfff;
|
2017-08-16 18:35:53 +00:00
|
|
|
uint8_t *paged_rom_;
|
|
|
|
|
|
|
|
inline void set_interrupt_line() {
|
|
|
|
m6502_.set_irq_line(
|
|
|
|
via_.get_interrupt_line() ||
|
|
|
|
(microdisc_is_enabled_ && microdisc_.get_interrupt_request_line()));
|
2016-11-25 12:15:48 +00:00
|
|
|
}
|
2017-08-16 18:35:53 +00:00
|
|
|
};
|
2016-11-25 12:15:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-08-16 18:35:53 +00:00
|
|
|
using namespace Oric;
|
|
|
|
|
|
|
|
Machine *Machine::Oric() {
|
|
|
|
return new ConcreteMachine;
|
2016-11-25 12:15:48 +00:00
|
|
|
}
|
2017-08-16 18:35:53 +00:00
|
|
|
|
|
|
|
Machine::~Machine() {}
|