diff options
author | 2020-08-24 11:07:31 +0200 | |
---|---|---|
committer | 2020-08-24 11:07:46 +0200 | |
commit | 8fbe4a8050b47df98b163f7eb6de0ed2310fa824 (patch) | |
tree | 0a23b6abf770fd4acc2b65171f1838e1e76cc97f /src/devices/video/i8244.h | |
parent | 68ef85836c9f5f57a8abb4c35785dc384d10f76a (diff) |
i8244: change pos hold strobe again, add sound interrupt
Diffstat (limited to 'src/devices/video/i8244.h')
-rw-r--r-- | src/devices/video/i8244.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/devices/video/i8244.h b/src/devices/video/i8244.h index 6ddff5806aa..c46034dd2b4 100644 --- a/src/devices/video/i8244.h +++ b/src/devices/video/i8244.h @@ -140,15 +140,13 @@ protected: uint8_t m_x_beam_pos = 0; uint8_t m_y_beam_pos = 0; - uint8_t m_y_latch = 0; uint8_t m_control_status = 0; uint8_t m_collision_status = 0; - bool m_pos_hold = false; - bool m_y_hold = false; bool m_sh_written = false; bool m_sh_pending = false; - u8 m_sh_prescaler = 0 ; + u8 m_sh_prescaler = 0; + u8 m_sh_count = 0; int m_sh_output = 0; u8 m_sh_duty = 0; }; |