mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
//
|
|
// Video.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 12/10/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Machines_Oric_Video_hpp
|
|
#define Machines_Oric_Video_hpp
|
|
|
|
#include "../../Outputs/CRT/CRT.hpp"
|
|
|
|
namespace Oric {
|
|
|
|
class VideoOutput {
|
|
public:
|
|
VideoOutput(uint8_t *memory);
|
|
std::shared_ptr<Outputs::CRT::CRT> get_crt();
|
|
void run_for_cycles(int number_of_cycles);
|
|
void set_colour_rom(const std::vector<uint8_t> &rom);
|
|
void set_output_device(Outputs::CRT::OutputDevice output_device);
|
|
|
|
private:
|
|
uint8_t *ram_;
|
|
std::shared_ptr<Outputs::CRT::CRT> crt_;
|
|
|
|
// Counters and limits
|
|
int counter_, frame_counter_;
|
|
int v_sync_start_position_, v_sync_end_position_, counter_period_;
|
|
|
|
// Output target and device
|
|
uint16_t *pixel_target_;
|
|
uint16_t colour_forms_[8];
|
|
Outputs::CRT::OutputDevice output_device_;
|
|
|
|
// Registers
|
|
uint8_t ink_, paper_;
|
|
|
|
int character_set_base_address_;
|
|
inline void set_character_set_base_address();
|
|
|
|
bool is_graphics_mode_;
|
|
bool next_frame_is_sixty_hertz_;
|
|
bool use_alternative_character_set_;
|
|
bool use_double_height_characters_;
|
|
bool blink_text_;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* Video_hpp */
|