summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/swim1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/swim1.cpp')
-rw-r--r--src/devices/machine/swim1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/swim1.cpp b/src/devices/machine/swim1.cpp
index 1af6cb60301..d313d777b42 100644
--- a/src/devices/machine/swim1.cpp
+++ b/src/devices/machine/swim1.cpp
@@ -33,7 +33,7 @@ void swim1_device::device_reset()
m_param_idx = 0;
memset(m_param, 0, sizeof(m_param));
m_floppy = nullptr;
-
+
m_devsel_cb(0);
m_sel35_cb(true);
m_hdsel_cb(false);
@@ -86,7 +86,7 @@ u8 swim1_device::read(offs_t offset)
u8 r = m_param[m_param_idx];
m_param_idx = (m_param_idx + 1) & 15;
return r;
- }
+ }
case 0x4: case 0xc:
return m_phases;
case 0x5: case 0xd:
@@ -122,7 +122,7 @@ void swim1_device::write(offs_t offset, u8 data)
m_param[m_param_idx] = data;
m_param_idx = (m_param_idx + 1) & 3;
break;
- }
+ }
case 0x4: {
m_phases = data;
update_phases();