summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8.cpp')
-rw-r--r--src/devices/cpu/h8/h8.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8.cpp b/src/devices/cpu/h8/h8.cpp
index 3863407c64c..e0214a6ea38 100644
--- a/src/devices/cpu/h8/h8.cpp
+++ b/src/devices/cpu/h8/h8.cpp
@@ -177,6 +177,11 @@ uint32_t h8_device::execute_input_lines() const
return 0;
}
+bool h8_device::execute_input_edge_triggered(int inputnum) const
+{
+ return inputnum == INPUT_LINE_NMI;
+}
+
void h8_device::recompute_bcount(uint64_t event_time)
{
if(!event_time || event_time >= total_cycles() + icount) {