summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine')
-rw-r--r--src/emu/machine/mb8421.c6
-rw-r--r--src/emu/machine/pit8253.c2
-rw-r--r--src/emu/machine/rp5h01.c2
-rw-r--r--src/emu/machine/smpc.c2
-rw-r--r--src/emu/machine/wozfdc.c6
5 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/machine/mb8421.c b/src/emu/machine/mb8421.c
index 12f912971be..0d3cb819a66 100644
--- a/src/emu/machine/mb8421.c
+++ b/src/emu/machine/mb8421.c
@@ -4,7 +4,7 @@
Fujitsu MB8421/22/31/32-90/-90L/-90LL/-12/-12L/-12LL
CMOS 16K-bit (2KB) dual-port SRAM
-
+
MB84x2 lacks interrupt pins, it's basically as simple as AM_RAM AM_SHARE("x")
MB843x is same as MB842x, except that it supports slave mode. It makes
sure there are no clashes, with the _BUSY pin.
@@ -70,7 +70,7 @@ READ8_MEMBER(mb8421_device::left_r)
if (offset == 0x7fe && !space.debugger_access())
m_intl_handler(0);
-
+
return m_ram[offset];
}
@@ -89,6 +89,6 @@ READ8_MEMBER(mb8421_device::right_r)
if (offset == 0x7ff && !space.debugger_access())
m_intr_handler(0);
-
+
return m_ram[offset];
}
diff --git a/src/emu/machine/pit8253.c b/src/emu/machine/pit8253.c
index f75e18c6cd0..2b9448582dd 100644
--- a/src/emu/machine/pit8253.c
+++ b/src/emu/machine/pit8253.c
@@ -103,7 +103,7 @@ void pit8253_device::device_start()
for (int timerno = 0; timerno < PIT8253_MAX_TIMER; timerno++)
{
pit8253_timer *timer = get_timer(timerno);
-
+
/* initialize timer */
timer->updatetimer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(pit8253_device::update_timer_cb),this));
timer->updatetimer->adjust(attotime::never, timerno);
diff --git a/src/emu/machine/rp5h01.c b/src/emu/machine/rp5h01.c
index 40279665ca0..3535cbe0f4e 100644
--- a/src/emu/machine/rp5h01.c
+++ b/src/emu/machine/rp5h01.c
@@ -7,7 +7,7 @@
with a mask of %1010111. For example if the 8 dummy bits are $7c,
bits 64 to 127 are read as $7c $7c $00 $00 $7c $7c $00 $00.
To simplify this, our emulation expects 'overdumps', 128bits total.
-
+
TODO:
- not sure if the polarity of our PROM dumps (playch10) is correct,
same goes for the bit order (note: does not require new dumps)
diff --git a/src/emu/machine/smpc.c b/src/emu/machine/smpc.c
index 20bde988d77..add9009417c 100644
--- a/src/emu/machine/smpc.c
+++ b/src/emu/machine/smpc.c
@@ -172,7 +172,7 @@ void saturn_state::stv_select_game(int gameno)
memcpy(memregion("abus")->base(), m_cart_reg[gameno]->base(), 0x3000000);
else
memset(memregion("abus")->base(), 0x00, 0x3000000);
-
+
m_prev_bankswitch = gameno;
}
}
diff --git a/src/emu/machine/wozfdc.c b/src/emu/machine/wozfdc.c
index 0f9e79a0a35..a6f2a10167e 100644
--- a/src/emu/machine/wozfdc.c
+++ b/src/emu/machine/wozfdc.c
@@ -80,7 +80,7 @@ void wozfdc_device::device_start()
save_item(NAME(cur_lss.data_reg));
save_item(NAME(cur_lss.address));
save_item(NAME(cur_lss.write_start_time));
-// save_item(NAME(cur_lss.write_buffer));
+// save_item(NAME(cur_lss.write_buffer));
save_item(NAME(cur_lss.write_position));
save_item(NAME(cur_lss.write_line_active));
save_item(NAME(predicted_lss.tm));
@@ -88,7 +88,7 @@ void wozfdc_device::device_start()
save_item(NAME(predicted_lss.data_reg));
save_item(NAME(predicted_lss.address));
save_item(NAME(predicted_lss.write_start_time));
-// save_item(NAME(predicted_lss.write_buffer));
+// save_item(NAME(predicted_lss.write_buffer));
save_item(NAME(predicted_lss.write_position));
save_item(NAME(predicted_lss.write_line_active));
save_item(NAME(drvsel));
@@ -582,6 +582,6 @@ void appleiii_fdc::control_dx(int offset)
if (offset < 8)
{
- a3_update_drive_sel();
+ a3_update_drive_sel();
}
}