1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/Machines/AppleII/Video.cpp
Thomas Harte 9bc470027e Put enough in place to get a visual representation of video memory.
Not the correct one, and so as to indicate that the machine isn't booting, surprisingly.
2018-04-15 19:35:08 -04:00

36 lines
685 B
C++

//
// Video.cpp
// Clock Signal
//
// Created by Thomas Harte on 14/04/2018.
// Copyright © 2018 Thomas Harte. All rights reserved.
//
#include "Video.hpp"
using namespace AppleII::Video;
//void Video::set_graphics_mode() {
// printf("Graphics mode\n");
//}
//
//void Video::set_text_mode() {
// printf("Text mode\n");
//}
//
//void Video::set_mixed_mode(bool mixed_mode) {
// printf("Mixed mode: %s\n", mixed_mode ? "true" : "false");
//}
//
//void Video::set_video_page(int page) {
// printf("Video page: %d\n", page);
//}
//
//void Video::set_low_resolution() {
// printf("Low resolution\n");
//}
//
//void Video::set_high_resolution() {
// printf("High resolution\n");
//}