summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine')
-rw-r--r--src/emu/machine/53c810.c18
-rw-r--r--src/emu/machine/mc146818.c2
-rw-r--r--src/emu/machine/mc146818.h4
-rw-r--r--src/emu/machine/smc91c9x.c4
4 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/machine/53c810.c b/src/emu/machine/53c810.c
index f1bf5d29d2e..9e4b7f6f3e1 100644
--- a/src/emu/machine/53c810.c
+++ b/src/emu/machine/53c810.c
@@ -148,9 +148,9 @@ static OPCODE_HANDLER( dmaop_block_move )
static OPCODE_HANDLER( dmaop_select )
{
-// UINT32 operand;
+// UINT32 operand;
-// operand = FETCH(machine);
+// operand = FETCH(machine);
if (lsi810.scntl0 & 0x01)
{
@@ -173,9 +173,9 @@ static OPCODE_HANDLER( dmaop_select )
static OPCODE_HANDLER( dmaop_wait_disconnect )
{
-// UINT32 operand;
+// UINT32 operand;
-// operand = FETCH(machine);
+// operand = FETCH(machine);
if (lsi810.scntl0 & 0x01)
{
@@ -193,7 +193,7 @@ static OPCODE_HANDLER( dmaop_wait_reselect )
{
// UINT32 operand;
-// operand = FETCH(machine);
+// operand = FETCH(machine);
if (lsi810.scntl0 & 0x01)
{
@@ -209,9 +209,9 @@ static OPCODE_HANDLER( dmaop_wait_reselect )
static OPCODE_HANDLER( dmaop_set )
{
-// UINT32 operand;
+// UINT32 operand;
-// operand = FETCH(machine);
+// operand = FETCH(machine);
/* initiator mode */
if (lsi810.dcmd & 0x8)
@@ -238,9 +238,9 @@ static OPCODE_HANDLER( dmaop_set )
static OPCODE_HANDLER( dmaop_clear )
{
-// UINT32 operand;
+// UINT32 operand;
-// operand = FETCH(machine);
+// operand = FETCH(machine);
/* initiator mode */
if (lsi810.dcmd & 0x8)
diff --git a/src/emu/machine/mc146818.c b/src/emu/machine/mc146818.c
index 681b9ecfd1c..bc048effdc1 100644
--- a/src/emu/machine/mc146818.c
+++ b/src/emu/machine/mc146818.c
@@ -507,7 +507,7 @@ WRITE8_MEMBER( mc146818_device::write )
// fixme: allow different time base
data &= 0x0f;
if (m_data[0x0b] & 0x40) {
- if (data > 2)
+ if (data > 2)
m_period = attotime::from_hz(32768 >> (data - 1));
else if (data > 0)
m_period = attotime::from_hz(32768 >> (data + 6));
diff --git a/src/emu/machine/mc146818.h b/src/emu/machine/mc146818.h
index 8d22f064057..38d3e563888 100644
--- a/src/emu/machine/mc146818.h
+++ b/src/emu/machine/mc146818.h
@@ -26,7 +26,7 @@
#define MCFG_MC146818_ADD(_tag, _type) \
MCFG_DEVICE_ADD(_tag, MC146818, 0) \
- mc146818_device::static_set_type(*device, mc146818_device::_type);
+ mc146818_device::static_set_type(*device, mc146818_device::_type);
//**************************************************************************
// TYPE DEFINITIONS
@@ -100,7 +100,7 @@ protected:
attotime m_last_refresh;
attotime m_period;
-
+
static const device_timer_id TIMER_CLOCK = 0;
static const device_timer_id TIMER_PERIODIC = 1;
diff --git a/src/emu/machine/smc91c9x.c b/src/emu/machine/smc91c9x.c
index 6236a7defe3..3c9670ae52a 100644
--- a/src/emu/machine/smc91c9x.c
+++ b/src/emu/machine/smc91c9x.c
@@ -388,7 +388,7 @@ READ16_DEVICE_HANDLER( smc91c9x_r )
WRITE16_DEVICE_HANDLER( smc91c9x_w )
{
smc91c9x_state *smc = get_safe_token(device);
-// UINT16 olddata;
+// UINT16 olddata;
/* determine the effective register */
offset %= 8;
@@ -396,7 +396,7 @@ WRITE16_DEVICE_HANDLER( smc91c9x_w )
offset += 8 * (smc->reg[EREG_BANK] & 7);
/* update the data generically */
-// olddata = smc->reg[offset];
+// olddata = smc->reg[offset];
mem_mask &= smc->regmask[offset];
COMBINE_DATA(&smc->reg[offset]);