mirror of
https://github.com/holub/mame
synced 2025-06-26 14:24:12 +03:00
tms5220.c: whitespace cleanup (n/w)
This commit is contained in:
parent
b355441ece
commit
935d97d121
@ -630,7 +630,6 @@ int tms5220_device::extract_bits(int count)
|
|||||||
if (m_speechrom)
|
if (m_speechrom)
|
||||||
val = m_speechrom->read(count);
|
val = m_speechrom->read(count);
|
||||||
}
|
}
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -649,13 +648,11 @@ int tms5220_device::status_read()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ /* read status */
|
{ /* read status */
|
||||||
|
|
||||||
/* clear the interrupt pin on status read */
|
/* clear the interrupt pin on status read */
|
||||||
set_interrupt_state(0);
|
set_interrupt_state(0);
|
||||||
#ifdef DEBUG_PIN_READS
|
#ifdef DEBUG_PIN_READS
|
||||||
fprintf(stderr,"Status read: TS=%d BL=%d BE=%d\n", TALK_STATUS, m_buffer_low, m_buffer_empty);
|
fprintf(stderr,"Status read: TS=%d BL=%d BE=%d\n", TALK_STATUS, m_buffer_low, m_buffer_empty);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return (TALK_STATUS << 7) | (m_buffer_low << 6) | (m_buffer_empty << 5);
|
return (TALK_STATUS << 7) | (m_buffer_low << 6) | (m_buffer_empty << 5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user