summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2018-05-26 00:40:59 +0700
committer R. Belmont <rb6502@users.noreply.github.com>2018-05-25 13:40:59 -0400
commit12f3b9f8a763aead74791a597f3ed4a15a25e145 (patch)
treea3206c9dd1598b2817c6a035d217104263e6f17d /src/devices/cpu
parent106e27478414a80e0959be52e55b23742855646c (diff)
interpro: lle keyboard working (#3608)
* interpro: lle keyboard working * lle keyboard working, mapping incomplete * slow down cpu, fixes keyboard boot and graphic glitching * remove unnecessary reset suspend/timer * 6700/6800 eprom confirmed to match 2700/2800 * fix line clipping crash and remove noisy logging * interpro: don't use UCHAR_MAMEKEY (nw)
Diffstat (limited to 'src/devices/cpu')
-rw-r--r--src/devices/cpu/clipper/clipper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/clipper/clipper.cpp b/src/devices/cpu/clipper/clipper.cpp
index 5c05703a2af..d57e3f9ff02 100644
--- a/src/devices/cpu/clipper/clipper.cpp
+++ b/src/devices/cpu/clipper/clipper.cpp
@@ -296,7 +296,7 @@ void clipper_device::execute_run()
// FIXME: some instructions take longer (significantly) than one cycle
// and also the timings are often slower for the C100 and C300
- m_icount--;
+ m_icount -= 4;
}
}