mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-27 01:31:42 +00:00
Cut some dead state.
This commit is contained in:
parent
9309be229c
commit
95f54cb4b5
@ -22,7 +22,6 @@ namespace {
|
|||||||
VideoOutput::VideoOutput(uint8_t *memory) :
|
VideoOutput::VideoOutput(uint8_t *memory) :
|
||||||
_ram(memory),
|
_ram(memory),
|
||||||
_frame_counter(0), _counter(0),
|
_frame_counter(0), _counter(0),
|
||||||
_state(Sync), _cycles_in_state(0),
|
|
||||||
_is_graphics_mode(false),
|
_is_graphics_mode(false),
|
||||||
_character_set_base_address(0xb400),
|
_character_set_base_address(0xb400),
|
||||||
_phase(0),
|
_phase(0),
|
||||||
|
@ -27,11 +27,7 @@ class VideoOutput {
|
|||||||
int _counter, _frame_counter;
|
int _counter, _frame_counter;
|
||||||
int _v_sync_start_position, _v_sync_end_position, _counter_period;
|
int _v_sync_start_position, _v_sync_end_position, _counter_period;
|
||||||
|
|
||||||
// Output state
|
// Output target
|
||||||
enum State {
|
|
||||||
Blank, Sync, Pixels, ColourBurst
|
|
||||||
} _state;
|
|
||||||
unsigned int _cycles_in_state;
|
|
||||||
uint8_t *_pixel_target;
|
uint8_t *_pixel_target;
|
||||||
|
|
||||||
// Registers
|
// Registers
|
||||||
|
Loading…
Reference in New Issue
Block a user