1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 23:29:06 +00:00
CLK/Machines/Apple/AppleIIgs/Video.hpp

37 lines
600 B
C++
Raw Normal View History

2020-11-01 00:39:32 +00:00
//
// Video.hpp
// Clock Signal
//
// Created by Thomas Harte on 31/10/2020.
// Copyright © 2020 Thomas Harte. All rights reserved.
//
#ifndef Apple_IIgs_Video_hpp
#define Apple_IIgs_Video_hpp
#include "../AppleII/VideoSwitches.hpp"
namespace Apple {
namespace IIgs {
namespace Video {
class VideoBase: public Apple::II::VideoSwitches<Cycles> {
public:
VideoBase();
private:
void did_set_annunciator_3(bool) override;
void did_set_alternative_character_set(bool) override;
};
class Video: public VideoBase {
public:
using VideoBase::VideoBase;
};
}
}
}
#endif /* Video_hpp */