1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-25 19:29:31 +00:00
CLK/Machines/Apple/Macintosh/Video.hpp

30 lines
443 B
C++
Raw Normal View History

//
// Video.hpp
// Clock Signal
//
// Created by Thomas Harte on 03/05/2019.
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#ifndef Video_hpp
#define Video_hpp
#include "../../../Outputs/CRT/CRT.hpp"
namespace Apple {
namespace Macintosh {
class Video {
public:
Video(uint16_t *ram);
void set_scan_target(Outputs::Display::ScanTarget *scan_target);
private:
Outputs::CRT::CRT crt_;
};
}
}
#endif /* Video_hpp */