1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Cut some dead state.

This commit is contained in:
Thomas Harte 2016-10-30 20:15:47 -04:00
parent 58f888c6ad
commit 3b52ab0d37
2 changed files with 1 additions and 6 deletions

View File

@ -22,7 +22,6 @@ namespace {
VideoOutput::VideoOutput(uint8_t *memory) :
_ram(memory),
_frame_counter(0), _counter(0),
_state(Sync), _cycles_in_state(0),
_is_graphics_mode(false),
_character_set_base_address(0xb400),
_phase(0),

View File

@ -27,11 +27,7 @@ class VideoOutput {
int _counter, _frame_counter;
int _v_sync_start_position, _v_sync_end_position, _counter_period;
// Output state
enum State {
Blank, Sync, Pixels, ColourBurst
} _state;
unsigned int _cycles_in_state;
// Output target
uint8_t *_pixel_target;
// Registers