1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-24 12:29:06 +00:00
CLK/Machines/Oric/Video.cpp

24 lines
378 B
C++

//
// Video.cpp
// Clock Signal
//
// Created by Thomas Harte on 12/10/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#include "Video.hpp"
using namespace Oric;
VideoOutput::VideoOutput(uint8_t *memory) : _ram(memory)
{
}
void VideoOutput::set_crt(std::shared_ptr<Outputs::CRT::CRT> crt)
{
}
void VideoOutput::run_for_cycles(int number_of_cycles)
{
}