summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/special.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-12-17 07:22:20 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-12-17 07:22:20 +0000
commit436d2f757f0c32573ea41013e8b10ca07ed6fc08 (patch)
tree77fc28a1edb618f19ae38071ed1b7c3316d41f5e /src/mess/machine/special.c
parent449da4bc62a76ac132892d0f9e7e506fdf5eb586 (diff)
Cleanups and version bumpmame0147u4
Diffstat (limited to 'src/mess/machine/special.c')
-rw-r--r--src/mess/machine/special.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mess/machine/special.c b/src/mess/machine/special.c
index 3ead45b349f..bfe357c9ace 100644
--- a/src/mess/machine/special.c
+++ b/src/mess/machine/special.c
@@ -266,7 +266,7 @@ WRITE8_MEMBER( special_state::specimx_disk_ctrl_w )
switch(offset)
{
- case 0 :
+ case 0 :
m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE);
break;
case 2 :
@@ -400,10 +400,10 @@ READ8_MEMBER( special_state::erik_disk_reg_r )
WRITE8_MEMBER( special_state::erik_disk_reg_w )
{
/*
- wd17xx_set_side (m_fdc,data & 1);
- wd17xx_set_drive(m_fdc,(data >> 1) & 1);
- wd17xx_dden_w(m_fdc, BIT(data, 2));
- floppy_mon_w(floppy_get_device(machine(), BIT(data, 1)), 0);
- floppy_mon_w(floppy_get_device(machine(), BIT(data, 1) ^ 1), 1);
- floppy_drive_set_ready_state(floppy_get_device(machine(), BIT(data, 1)), 1, 1);*/
+ wd17xx_set_side (m_fdc,data & 1);
+ wd17xx_set_drive(m_fdc,(data >> 1) & 1);
+ wd17xx_dden_w(m_fdc, BIT(data, 2));
+ floppy_mon_w(floppy_get_device(machine(), BIT(data, 1)), 0);
+ floppy_mon_w(floppy_get_device(machine(), BIT(data, 1) ^ 1), 1);
+ floppy_drive_set_ready_state(floppy_get_device(machine(), BIT(data, 1)), 1, 1);*/
}