diff options
author | 2022-07-24 11:37:24 -0400 | |
---|---|---|
committer | 2022-07-24 11:37:24 -0400 | |
commit | 0c477ea064c673c63dd0b5638177aa345efc68df (patch) | |
tree | 4976fd930ec2554ba51956e8395dd2a199d7be57 /src/devices/cpu/h8/h8.cpp | |
parent | d22e5e2a207f553aadb2817b3bf1d8a6cc93c1ce (diff) |
h8: MULXS & MULXU are slower without a MAC
Diffstat (limited to 'src/devices/cpu/h8/h8.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8.cpp b/src/devices/cpu/h8/h8.cpp index 4eb6d2103a6..a571fe2367c 100644 --- a/src/devices/cpu/h8/h8.cpp +++ b/src/devices/cpu/h8/h8.cpp @@ -25,6 +25,7 @@ h8_device::h8_device(const machine_config &mconfig, device_type type, const char mode_advanced = false; mode_a20 = false; has_exr = false; + has_mac = false; mac_saturating = false; has_trace = false; has_hc = true; |