mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-06 12:07:57 +00:00
29 lines
504 B
C++
29 lines
504 B
C++
//
|
|
// CRT.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 19/07/2015.
|
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef CRT_cpp
|
|
#define CRT_cpp
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
namespace Outputs {
|
|
|
|
class CRT {
|
|
public:
|
|
CRT(int cycles_per_line);
|
|
void output_sync(int number_of_cycles);
|
|
void output_level(int number_of_cycles, uint8_t *level, std::string type);
|
|
void output_data(int number_of_cycles, uint8_t *data, std::string type);
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif /* CRT_cpp */
|