summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tms1000c.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2019-03-01 14:49:40 +0100
committer hap <happppp@users.noreply.github.com>2019-03-01 14:49:51 +0100
commitae00d7c0dabff1de4da3d964ff9221674d6ed164 (patch)
tree7545f7669a778634e2e96e48b91511bea1fec452 /src/devices/cpu/tms1000/tms1000c.cpp
parent17fcc38a25415059e6b20d5d9b1f8c5e4ef81333 (diff)
tms1000: move tms0270 devcb binders to base class (nw)
Diffstat (limited to 'src/devices/cpu/tms1000/tms1000c.cpp')
-rw-r--r--src/devices/cpu/tms1000/tms1000c.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/devices/cpu/tms1000/tms1000c.cpp b/src/devices/cpu/tms1000/tms1000c.cpp
index defc8482eef..b69a683f280 100644
--- a/src/devices/cpu/tms1000/tms1000c.cpp
+++ b/src/devices/cpu/tms1000/tms1000c.cpp
@@ -52,21 +52,3 @@ u32 tms1000c_cpu_device::decode_micro(u8 sel)
return decode;
}
-
-
-// execute
-void tms1000c_cpu_device::execute_run()
-{
- while (m_icount > 0)
- {
- if (m_halt_pin)
- {
- // not running (output pins remain unchanged)
- m_icount = 0;
- return;
- }
-
- m_icount--;
- execute_one();
- }
-}