summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/mc6854.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/mc6854.c')
-rw-r--r--src/emu/machine/mc6854.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/mc6854.c b/src/emu/machine/mc6854.c
index b2009ef6500..2ec4196baad 100644
--- a/src/emu/machine/mc6854.c
+++ b/src/emu/machine/mc6854.c
@@ -186,11 +186,11 @@ mc6854_device::mc6854_device(const machine_config &mconfig, const char *tag, dev
m_fpos(0)
{
for (int i = 0; i < MC6854_FIFO_SIZE; i++)
- {
+ {
m_tfifo[i] = 0;
m_rfifo[i] = 0;
}
-
+
for (int i = 0; i < MAX_FRAME_LENGTH; i++)
{
m_frame[i] = 0;
@@ -379,7 +379,7 @@ void mc6854_device::tfifo_terminate( )
TIMER_CALLBACK_MEMBER(mc6854_device::tfifo_cb)
{
device_t* device = (device_t*) ptr;
-
+
int i, data = m_tfifo[ MC6854_FIFO_SIZE - 1 ];
if ( ! m_tstate )