1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-27 02:29:12 +00:00
CLK/Machines/Sinclair/ZXSpectrum/Video.hpp

27 lines
336 B
C++
Raw Normal View History

2021-03-18 16:47:48 +00:00
//
// Video.hpp
// Clock Signal
//
// Created by Thomas Harte on 18/03/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#ifndef Video_hpp
#define Video_hpp
namespace Sinclair {
namespace ZXSpectrum {
enum class VideoTiming {
Plus3
};
template <VideoTiming timing> class Video {
};
}
}
#endif /* Video_hpp */