diff options
author | 2016-06-29 08:34:30 +0200 | |
---|---|---|
committer | 2016-06-29 08:34:30 +0200 | |
commit | 63f9a01f8c5d43b9cfe68c2d401a84647d19c10e (patch) | |
tree | a1f1874aa84850bddbebd2b0e0bfc3e1c77ce8c4 /src/mame/drivers/funkball.cpp | |
parent | 1f6f1bfd6cfb748d9c5e159d6bd014bab8d30944 (diff) |
Cleanup and version bumpmame0175
Diffstat (limited to 'src/mame/drivers/funkball.cpp')
-rw-r--r-- | src/mame/drivers/funkball.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/funkball.cpp b/src/mame/drivers/funkball.cpp index 44eb87d26ec..601b7e14a5c 100644 --- a/src/mame/drivers/funkball.cpp +++ b/src/mame/drivers/funkball.cpp @@ -228,7 +228,7 @@ WRITE8_MEMBER( funkball_state::serial_w ) { if(offset == 0) { - // TODO: hack, main CPU sends a CR only here, actually expecting Windows-style newline. + // TODO: hack, main CPU sends a CR only here, actually expecting Windows-style newline. if(data == 0x0d) m_terminal->write(space,0,0x0a); else @@ -839,7 +839,7 @@ static MACHINE_CONFIG_START( funkball, funkball_state ) MCFG_SCREEN_VISIBLE_AREA(0, 511, 16, 447) MCFG_DEVICE_ADD("terminal", GENERIC_TERMINAL, 0) - + MCFG_INTEL_28F320J5_ADD("u29") MCFG_INTEL_28F320J5_ADD("u30") MCFG_INTEL_28F320J5_ADD("u3") |