2019-10-04 00:17:26 +00:00
|
|
|
//
|
|
|
|
// AtariST.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 03/10/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "AtariST.hpp"
|
|
|
|
|
2019-10-04 02:47:57 +00:00
|
|
|
#include "../CRTMachine.hpp"
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
#include "../../Processors/68000/68000.hpp"
|
|
|
|
|
2019-10-07 02:30:48 +00:00
|
|
|
#include "../../Components/AY38910/AY38910.hpp"
|
2019-10-07 03:14:05 +00:00
|
|
|
#include "../../Components/68901/MFP68901.hpp"
|
2019-10-07 02:30:48 +00:00
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
#include "Video.hpp"
|
|
|
|
#include "../../ClockReceiver/JustInTime.hpp"
|
2019-10-07 02:30:48 +00:00
|
|
|
#include "../../ClockReceiver/ForceInline.hpp"
|
|
|
|
|
|
|
|
#include "../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp"
|
2019-10-05 01:34:15 +00:00
|
|
|
|
2019-10-05 02:38:46 +00:00
|
|
|
#include "../Utility/MemoryPacker.hpp"
|
|
|
|
#include "../Utility/MemoryFuzzer.hpp"
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
namespace Atari {
|
|
|
|
namespace ST {
|
2019-10-04 02:47:57 +00:00
|
|
|
|
|
|
|
const int CLOCK_RATE = 8000000;
|
|
|
|
|
|
|
|
using Target = Analyser::Static::Target;
|
|
|
|
|
|
|
|
class ConcreteMachine:
|
|
|
|
public Atari::ST::Machine,
|
2019-10-05 01:34:15 +00:00
|
|
|
public CPU::MC68000::BusHandler,
|
2019-10-04 02:47:57 +00:00
|
|
|
public CRTMachine::Machine {
|
|
|
|
public:
|
2019-10-05 01:34:15 +00:00
|
|
|
ConcreteMachine(const Target &target, const ROMMachine::ROMFetcher &rom_fetcher) :
|
2019-10-07 02:30:48 +00:00
|
|
|
mc68000_(*this),
|
|
|
|
ay_(audio_queue_),
|
|
|
|
speaker_(ay_) {
|
2019-10-04 02:47:57 +00:00
|
|
|
set_clock_rate(CLOCK_RATE);
|
2019-10-07 02:30:48 +00:00
|
|
|
speaker_.set_input_rate(CLOCK_RATE / 4);
|
2019-10-05 01:34:15 +00:00
|
|
|
|
2019-10-05 02:38:46 +00:00
|
|
|
ram_.resize(512 * 512);
|
|
|
|
Memory::Fuzz(ram_);
|
2019-10-05 01:34:15 +00:00
|
|
|
|
|
|
|
std::vector<ROMMachine::ROM> rom_descriptions = {
|
|
|
|
{"AtariST", "the TOS ROM", "tos100.img", 192*1024, 0x1a586c64}
|
|
|
|
};
|
|
|
|
const auto roms = rom_fetcher(rom_descriptions);
|
|
|
|
if(!roms[0]) {
|
|
|
|
throw ROMMachine::Error::MissingROMs;
|
|
|
|
}
|
2019-10-05 02:38:46 +00:00
|
|
|
Memory::PackBigEndian16(*roms[0], rom_);
|
2019-10-06 21:15:29 +00:00
|
|
|
|
|
|
|
// Set up basic memory map.
|
|
|
|
memory_map_[0] = BusDevice::MostlyRAM;
|
|
|
|
for(int c = 1; c < 0xf0; ++c) memory_map_[c] = BusDevice::RAM;
|
|
|
|
|
|
|
|
// This is appropriate for: TOS 1.x, no cartridge.
|
|
|
|
for(int c = 0xf0; c < 0xfc; ++c) memory_map_[c] = BusDevice::Unassigned;
|
|
|
|
for(int c = 0xfc; c < 0xff; ++c) memory_map_[c] = BusDevice::ROM;
|
|
|
|
memory_map_[0xfa] = memory_map_[0xfb] = BusDevice::Cartridge;
|
|
|
|
|
|
|
|
memory_map_[0xff] = BusDevice::IO;
|
2019-10-04 02:47:57 +00:00
|
|
|
}
|
|
|
|
|
2019-10-07 02:30:48 +00:00
|
|
|
~ConcreteMachine() {
|
|
|
|
audio_queue_.flush();
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
// MARK: CRTMachine::Machine
|
2019-10-04 02:47:57 +00:00
|
|
|
void set_scan_target(Outputs::Display::ScanTarget *scan_target) final {
|
2019-10-05 01:34:15 +00:00
|
|
|
video_->set_scan_target(scan_target);
|
2019-10-04 02:47:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Outputs::Speaker::Speaker *get_speaker() final {
|
2019-10-07 02:30:48 +00:00
|
|
|
return &speaker_;
|
2019-10-04 02:47:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void run_for(const Cycles cycles) final {
|
2019-10-05 01:34:15 +00:00
|
|
|
mc68000_.run_for(cycles);
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: MC68000::BusHandler
|
2019-10-05 02:38:46 +00:00
|
|
|
using Microcycle = CPU::MC68000::Microcycle;
|
2019-10-05 01:34:15 +00:00
|
|
|
HalfCycles perform_bus_operation(const CPU::MC68000::Microcycle &cycle, int is_supervisor) {
|
2019-10-05 02:38:46 +00:00
|
|
|
// Advance time.
|
2019-10-07 02:30:48 +00:00
|
|
|
advance_time(cycle.length);
|
2019-10-05 02:38:46 +00:00
|
|
|
|
|
|
|
// A null cycle leaves nothing else to do.
|
|
|
|
if(!(cycle.operation & (Microcycle::NewAddress | Microcycle::SameAddress))) return HalfCycles(0);
|
|
|
|
|
2019-10-06 21:15:29 +00:00
|
|
|
/* TODO: DTack, bus error, VPA. */
|
|
|
|
|
2019-10-05 02:38:46 +00:00
|
|
|
auto address = cycle.word_address();
|
2019-10-07 02:30:48 +00:00
|
|
|
if(cycle.data_select_active()) printf("%c %06x\n", (cycle.operation & Microcycle::Read) ? 'r' : 'w', *cycle.address & 0xffffff);
|
2019-10-05 02:38:46 +00:00
|
|
|
uint16_t *memory;
|
2019-10-06 21:15:29 +00:00
|
|
|
switch(memory_map_[address >> 15]) {
|
|
|
|
case BusDevice::MostlyRAM:
|
|
|
|
if(address < 4) {
|
|
|
|
memory = rom_.data();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BusDevice::RAM:
|
|
|
|
memory = ram_.data();
|
|
|
|
address &= ram_.size() - 1;
|
|
|
|
// TODO: align with the next access window.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BusDevice::ROM:
|
|
|
|
memory = rom_.data();
|
|
|
|
address %= rom_.size();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BusDevice::Cartridge:
|
|
|
|
/*
|
|
|
|
TOS 1.0 appears to attempt to read from the catridge before it has setup
|
|
|
|
the bus error vector. Therefore I assume no bus error flows.
|
|
|
|
*/
|
|
|
|
switch(cycle.operation & (Microcycle::SelectWord | Microcycle::SelectByte | Microcycle::Read)) {
|
|
|
|
default: break;
|
|
|
|
case Microcycle::SelectWord | Microcycle::Read:
|
|
|
|
*cycle.value = 0xffff;
|
|
|
|
break;
|
|
|
|
case Microcycle::SelectByte | Microcycle::Read:
|
|
|
|
cycle.value->halves.low = 0xff;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return HalfCycles(0);
|
|
|
|
|
|
|
|
case BusDevice::Unassigned:
|
2019-10-07 02:30:48 +00:00
|
|
|
assert(false);
|
2019-10-06 21:15:29 +00:00
|
|
|
return HalfCycles(0);
|
|
|
|
|
|
|
|
case BusDevice::IO:
|
2019-10-07 02:30:48 +00:00
|
|
|
switch(address) {
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
|
|
|
|
case 0x7fc000:
|
|
|
|
/* Memory controller configuration:
|
|
|
|
b0, b1: bank 1
|
|
|
|
b2, b3: bank 0
|
|
|
|
|
|
|
|
00 = 128k
|
|
|
|
01 = 512k
|
|
|
|
10 = 2mb
|
|
|
|
11 = reserved
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x7fc400: /* PSG: write to select register, read to read register. */
|
|
|
|
case 0x7fc401: /* PSG: write to write register. */
|
|
|
|
if(!cycle.data_select_active()) return HalfCycles(0);
|
|
|
|
|
|
|
|
// TODO: byte accesses to the odd addresses shouldn't obey logic below.
|
|
|
|
advance_time(HalfCycles(2));
|
|
|
|
update_audio();
|
|
|
|
if(cycle.operation & Microcycle::Read) {
|
|
|
|
ay_.set_control_lines(GI::AY38910::ControlLines(GI::AY38910::BC2 | GI::AY38910::BC1));
|
|
|
|
cycle.value->halves.low = ay_.get_data_output();
|
|
|
|
ay_.set_control_lines(GI::AY38910::ControlLines(0));
|
|
|
|
} else {
|
|
|
|
if(address == 0x7fc400) {
|
|
|
|
ay_.set_control_lines(GI::AY38910::BC1);
|
|
|
|
ay_.set_data_input(cycle.value->halves.low);
|
|
|
|
ay_.set_control_lines(GI::AY38910::ControlLines(0));
|
|
|
|
} else {
|
|
|
|
ay_.set_control_lines(GI::AY38910::ControlLines(GI::AY38910::BC2 | GI::AY38910::BDIR));
|
|
|
|
ay_.set_data_input(cycle.value->halves.low);
|
|
|
|
ay_.set_control_lines(GI::AY38910::ControlLines(0));
|
|
|
|
}
|
|
|
|
}
|
2019-10-07 03:14:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
TODO: Port A:
|
|
|
|
b7: reserved
|
|
|
|
b6: "freely usable output (monitor jack)"
|
|
|
|
b5: centronics strobe
|
|
|
|
b4: RS-232 DTR output
|
|
|
|
b3: RS-232 RTS output
|
|
|
|
b2: select floppy drive 1
|
|
|
|
b1: select floppy drive 0
|
|
|
|
b0: "page choice signal for double-sided floppy drive"
|
|
|
|
*/
|
2019-10-07 02:30:48 +00:00
|
|
|
return HalfCycles(2);
|
2019-10-07 03:14:05 +00:00
|
|
|
|
|
|
|
// The MFP block:
|
|
|
|
case 0x7ffd00: case 0x7ffd01: case 0x7ffd02: case 0x7ffd03:
|
|
|
|
case 0x7ffd04: case 0x7ffd05: case 0x7ffd06: case 0x7ffd07:
|
|
|
|
case 0x7ffd08: case 0x7ffd09: case 0x7ffd0a: case 0x7ffd0b:
|
|
|
|
case 0x7ffd0c: case 0x7ffd0d: case 0x7ffd0e: case 0x7ffd0f:
|
|
|
|
case 0x7ffd10: case 0x7ffd11: case 0x7ffd12: case 0x7ffd13:
|
|
|
|
case 0x7ffd14: case 0x7ffd15: case 0x7ffd16: case 0x7ffd17:
|
|
|
|
case 0x7ffd18: case 0x7ffd19: case 0x7ffd1a: case 0x7ffd1b:
|
|
|
|
case 0x7ffd1c: case 0x7ffd1d: case 0x7ffd1e: case 0x7ffd1f:
|
|
|
|
if(!cycle.data_select_active()) return HalfCycles(0);
|
|
|
|
|
|
|
|
// The lower data lines aren't connected.
|
|
|
|
if(!cycle.upper_data_select()) {
|
|
|
|
if(cycle.operation & Microcycle::Read) {
|
|
|
|
cycle.value->halves.low = 0xff;
|
|
|
|
}
|
|
|
|
return HalfCycles(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cycle.operation & Microcycle::Read) {
|
|
|
|
const uint8_t value = mfp_->read(int(address));
|
|
|
|
if(cycle.operation & Microcycle::SelectByte) {
|
|
|
|
cycle.value->halves.low = value;
|
|
|
|
} else {
|
|
|
|
cycle.value->halves.high = value;
|
|
|
|
cycle.value->halves.low = 0xff;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(cycle.operation & Microcycle::SelectByte) {
|
|
|
|
mfp_->write(int(address), cycle.value->halves.low);
|
|
|
|
} else {
|
|
|
|
mfp_->write(int(address), cycle.value->halves.high);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2019-10-07 02:30:48 +00:00
|
|
|
}
|
|
|
|
return HalfCycles(0);
|
2019-10-05 02:38:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If control has fallen through to here, the access is either a read from ROM, or a read or write to RAM.
|
|
|
|
switch(cycle.operation & (Microcycle::SelectWord | Microcycle::SelectByte | Microcycle::Read)) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Microcycle::SelectWord | Microcycle::Read:
|
|
|
|
cycle.value->full = memory[address];
|
|
|
|
break;
|
|
|
|
case Microcycle::SelectByte | Microcycle::Read:
|
|
|
|
cycle.value->halves.low = uint8_t(memory[address] >> cycle.byte_shift());
|
|
|
|
break;
|
|
|
|
case Microcycle::SelectWord:
|
|
|
|
memory[address] = cycle.value->full;
|
|
|
|
break;
|
|
|
|
case Microcycle::SelectByte:
|
|
|
|
memory[address] = uint16_t(
|
|
|
|
(cycle.value->halves.low << cycle.byte_shift()) |
|
|
|
|
(memory[address] & cycle.untouched_byte_mask())
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
return HalfCycles(0);
|
2019-10-04 02:47:57 +00:00
|
|
|
}
|
2019-10-05 01:34:15 +00:00
|
|
|
|
2019-10-07 02:30:48 +00:00
|
|
|
void flush() {
|
|
|
|
audio_queue_.perform();
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
private:
|
2019-10-07 02:30:48 +00:00
|
|
|
forceinline void advance_time(HalfCycles length) {
|
|
|
|
video_ += length;
|
|
|
|
cycles_since_audio_update_ += length;
|
2019-10-07 03:14:05 +00:00
|
|
|
mfp_ += length;
|
2019-10-07 02:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void update_audio() {
|
|
|
|
speaker_.run_for(audio_queue_, cycles_since_audio_update_.divide_cycles(Cycles(4)));
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
CPU::MC68000::Processor<ConcreteMachine, true> mc68000_;
|
|
|
|
JustInTimeActor<Video, HalfCycles> video_;
|
2019-10-07 03:14:05 +00:00
|
|
|
JustInTimeActor<Motorola::MFP68901::MFP68901, HalfCycles> mfp_;
|
2019-10-05 01:34:15 +00:00
|
|
|
|
2019-10-07 02:30:48 +00:00
|
|
|
Concurrency::DeferringAsyncTaskQueue audio_queue_;
|
|
|
|
GI::AY38910::AY38910 ay_;
|
|
|
|
Outputs::Speaker::LowpassSpeaker<GI::AY38910::AY38910> speaker_;
|
|
|
|
HalfCycles cycles_since_audio_update_;
|
|
|
|
|
2019-10-05 02:38:46 +00:00
|
|
|
std::vector<uint16_t> ram_;
|
|
|
|
std::vector<uint16_t> rom_;
|
2019-10-05 01:34:15 +00:00
|
|
|
|
2019-10-06 21:15:29 +00:00
|
|
|
enum class BusDevice {
|
|
|
|
MostlyRAM, RAM, ROM, Cartridge, IO, Unassigned
|
|
|
|
};
|
|
|
|
BusDevice memory_map_[256];
|
2019-10-04 02:47:57 +00:00
|
|
|
};
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
}
|
2019-10-04 02:47:57 +00:00
|
|
|
}
|
|
|
|
|
2019-10-04 00:17:26 +00:00
|
|
|
using namespace Atari::ST;
|
|
|
|
|
|
|
|
Machine *Machine::AtariST(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher) {
|
2019-10-04 02:47:57 +00:00
|
|
|
return new ConcreteMachine(*target, rom_fetcher);
|
2019-10-04 00:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Machine::~Machine() {}
|