summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-01-13 09:41:49 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-01-13 09:41:49 -0500
commitf6125af6dbf43ce9251b4b2ebf521a5effda6ca6 (patch)
treeb3ff3c8e6a07d46962d7c3111cbe5f4707a82ec3
parentafd37345c8bd8ddab48360054796566306e829b2 (diff)
pace: Divide this for now (nw)
-rw-r--r--src/devices/cpu/pace/pace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/cpu/pace/pace.h b/src/devices/cpu/pace/pace.h
index 6fb0daaafeb..c97b92aff0f 100644
--- a/src/devices/cpu/pace/pace.h
+++ b/src/devices/cpu/pace/pace.h
@@ -76,6 +76,8 @@ protected:
virtual void device_reset() override;
// device_execute_interface overrides
+ virtual u64 execute_clocks_to_cycles(u64 clocks) const noexcept override { return (clocks + 4 - 1) / 4; }
+ virtual u64 execute_cycles_to_clocks(u64 cycles) const noexcept override { return (cycles * 4); }
virtual void execute_run() override;
virtual void execute_set_input(int irqline, int state) override;