diff options
author | 2015-09-11 01:10:40 -0400 | |
---|---|---|
committer | 2015-09-11 01:11:28 -0400 | |
commit | 935d97d121e2d2bb71d7bbc0fd50844e2119a14f (patch) | |
tree | f36ee19e9df60b1a27a9359ac50f7dbaeb94bccc | |
parent | b355441ece5263576cc4dbc3cfc37a33fec392c8 (diff) |
tms5220.c: whitespace cleanup (n/w)
-rw-r--r-- | src/emu/sound/tms5220.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/sound/tms5220.c b/src/emu/sound/tms5220.c index 0018066fcc4..0e7674161db 100644 --- a/src/emu/sound/tms5220.c +++ b/src/emu/sound/tms5220.c @@ -630,7 +630,6 @@ int tms5220_device::extract_bits(int count) if (m_speechrom) val = m_speechrom->read(count); } - return val; } @@ -649,13 +648,11 @@ int tms5220_device::status_read() } else { /* read status */ - /* clear the interrupt pin on status read */ set_interrupt_state(0); #ifdef DEBUG_PIN_READS fprintf(stderr,"Status read: TS=%d BL=%d BE=%d\n", TALK_STATUS, m_buffer_low, m_buffer_empty); #endif - return (TALK_STATUS << 7) | (m_buffer_low << 6) | (m_buffer_empty << 5); } } |