summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/pc.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-11-05 06:59:51 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-11-05 06:59:51 +0000
commit44d5c1b8ab2ef3c06e831f901d0ab95262073bd7 (patch)
treebfdb73de82a28464c3b2c3098ad77a745b67759e /src/mess/machine/pc.c
parent50cdc0f4ae9f07d666341cf3f60c253a71e6f016 (diff)
Cleanups and version bumpmame0151
Diffstat (limited to 'src/mess/machine/pc.c')
-rw-r--r--src/mess/machine/pc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/pc.c b/src/mess/machine/pc.c
index 50d620fe014..b2eff69e7c2 100644
--- a/src/mess/machine/pc.c
+++ b/src/mess/machine/pc.c
@@ -425,15 +425,15 @@ const struct pit8253_interface pcjr_pit8253_config =
const i8251_interface mc1502_i8251_interface =
{
- DEVCB_NULL, /* XXX RxD data are accessible via PPI port C, bit 7 */
+ DEVCB_NULL, /* XXX RxD data are accessible via PPI port C, bit 7 */
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
- DEVCB_DEVICE_LINE_MEMBER("pic8259", pic8259_device, ir7_w), /* default handler does nothing */
+ DEVCB_DEVICE_LINE_MEMBER("pic8259", pic8259_device, ir7_w), /* default handler does nothing */
DEVCB_DEVICE_LINE_MEMBER("pic8259", pic8259_device, ir7_w),
DEVCB_NULL,
- DEVCB_NULL /* XXX SYNDET triggers NMI */
+ DEVCB_NULL /* XXX SYNDET triggers NMI */
};
WRITE_LINE_MEMBER(pc_state::mc1502_pit8253_out1_changed)
@@ -1534,7 +1534,7 @@ MACHINE_RESET_MEMBER(pc_state,pc)
m_speaker->level_w(0);
// ec1841-specific code
- m_memboards = m_ram->size()/(512*1024) - 1;
+ m_memboards = m_ram->size()/(512*1024) - 1;
if (m_memboards > 3)
m_memboards = 3;
memset(m_memboard,0,sizeof(m_memboard));