diff options
Diffstat (limited to 'src/mess/drivers/geniusiq.c')
-rw-r--r-- | src/mess/drivers/geniusiq.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mess/drivers/geniusiq.c b/src/mess/drivers/geniusiq.c index b2aba5311d6..c116f8ebf1f 100644 --- a/src/mess/drivers/geniusiq.c +++ b/src/mess/drivers/geniusiq.c @@ -249,8 +249,8 @@ private: UINT8 m_mouse_posy; UINT16 m_mouse_gfx_posx; UINT16 m_mouse_gfx_posy; - UINT8 * m_cart; - UINT8 m_cart_state; + UINT8 * m_cart; + UINT8 m_cart_state; struct { UINT16 buffer[KEYBOARD_QUEUE_SIZE]; @@ -405,13 +405,13 @@ WRITE16_MEMBER(geniusiq_state::gfx_idx_w) READ16_MEMBER( geniusiq_state::input_r ) { /* - this is guesswork and may not be correct + this is guesswork and may not be correct - xxxx xxx- ---- ---- unknown - ---- ---x ---- ---- used for indicate if the data read is valid (if not set the other bits are discarded) - ---- ---- x--- ---- if set indicates a KeyUp otherwise a KeyDown - ---- ---- -xxx xxxx this is the scan code - */ + xxxx xxx- ---- ---- unknown + ---- ---x ---- ---- used for indicate if the data read is valid (if not set the other bits are discarded) + ---- ---- x--- ---- if set indicates a KeyUp otherwise a KeyDown + ---- ---- -xxx xxxx this is the scan code + */ UINT16 data = 0; |