summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8279.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i8279.cpp')
-rw-r--r--src/devices/machine/i8279.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/i8279.cpp b/src/devices/machine/i8279.cpp
index 442f943d2b2..d336dd80858 100644
--- a/src/devices/machine/i8279.cpp
+++ b/src/devices/machine/i8279.cpp
@@ -374,9 +374,9 @@ READ8_MEMBER( i8279_device::data_r )
// read the display ram
data = m_d_ram[m_d_ram_ptr];
if (m_autoinc)
- {
+ {
m_d_ram_ptr++;
- }
+ }
}
else
if (sensor_mode)
@@ -385,13 +385,13 @@ READ8_MEMBER( i8279_device::data_r )
assert(m_s_ram_ptr < ARRAY_LENGTH(m_s_ram));
data = m_s_ram[m_s_ram_ptr];
if (m_autoinc)
- {
+ {
m_s_ram_ptr++;
- }
+ }
else
- {
+ {
set_irq(0);
- }
+ }
}
else
{