1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/Outputs/CRT.cpp

28 lines
434 B
C++

//
// CRT.cpp
// Clock Signal
//
// Created by Thomas Harte on 19/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
#include "CRT.hpp"
using namespace Outputs;
CRT::CRT(int cycles_per_line)
{
}
void CRT::output_sync(int number_of_cycles)
{
}
void CRT::output_level(int number_of_cycles, uint8_t *level, std::string type)
{
}
void CRT::output_data(int number_of_cycles, uint8_t *data, std::string type)
{
}