summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8s2600.cpp')
-rw-r--r--src/devices/cpu/h8/h8s2600.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h8s2600.cpp b/src/devices/cpu/h8/h8s2600.cpp
index 1d2ec37775e..0c813bd6102 100644
--- a/src/devices/cpu/h8/h8s2600.cpp
+++ b/src/devices/cpu/h8/h8s2600.cpp
@@ -9,9 +9,9 @@ h8s2600_device::h8s2600_device(const machine_config &mconfig, device_type type,
{
}
-util::disasm_interface *h8s2600_device::create_disassembler()
+std::unique_ptr<util::disasm_interface> h8s2600_device::create_disassembler()
{
- return new h8s2600_disassembler;
+ return std::make_unique<h8s2600_disassembler>();
}
#include "cpu/h8/h8s2600.hxx"