mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-06 10:38:16 +00:00
Expands upon the MSX skeleton.
This commit is contained in:
parent
68a2895753
commit
576d554a2c
@ -14,14 +14,37 @@
|
||||
#include "../../Components/8255/i8255.hpp"
|
||||
#include "../../Components/AY38910/AY38910.hpp"
|
||||
|
||||
#include "../CRTMachine.hpp"
|
||||
|
||||
namespace MSX {
|
||||
|
||||
class ConcreteMachine:
|
||||
public Machine,
|
||||
public CPU::Z80::BusHandler,
|
||||
public Machine {
|
||||
public CRTMachine::Machine {
|
||||
public:
|
||||
ConcreteMachine():
|
||||
z80_(*this) {}
|
||||
z80_(*this) {
|
||||
set_clock_rate(3579545);
|
||||
}
|
||||
|
||||
void setup_output(float aspect_ratio) override {
|
||||
}
|
||||
|
||||
void close_output() override {
|
||||
}
|
||||
|
||||
std::shared_ptr<Outputs::CRT::CRT> get_crt() override {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::shared_ptr<Outputs::Speaker> get_speaker() override {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void run_for(const Cycles cycles) override {
|
||||
z80_.run_for(cycles);
|
||||
}
|
||||
|
||||
private:
|
||||
CPU::Z80::Processor<ConcreteMachine, false, false> z80_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user