mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-02 02:49:28 +00:00
5287c57ee0
Albeit that there is no underlying machine yet.
32 lines
553 B
C++
32 lines
553 B
C++
//
|
|
// AppleIIgs.cpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 20/10/2020.
|
|
// Copyright 2020 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "AppleIIgs.hpp"
|
|
|
|
#include "../../../Analyser/Static/AppleIIgs/Target.hpp"
|
|
|
|
namespace Apple {
|
|
namespace IIgs {
|
|
|
|
}
|
|
}
|
|
|
|
using namespace Apple::IIgs;
|
|
|
|
Machine *Machine::AppleIIgs(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher) {
|
|
using Target = Analyser::Static::AppleIIgs::Target;
|
|
|
|
// TODO.
|
|
(void)target;
|
|
(void)rom_fetcher;
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
Machine::~Machine() {}
|