mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-01 02:31:00 +00:00
9bc470027e
Not the correct one, and so as to indicate that the machine isn't booting, surprisingly.
36 lines
685 B
C++
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");
|
|
//}
|