summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h6280/h6280.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h6280/h6280.cpp')
-rw-r--r--src/devices/cpu/h6280/h6280.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h6280/h6280.cpp b/src/devices/cpu/h6280/h6280.cpp
index 5df36ff2fb0..d8dd1c7db80 100644
--- a/src/devices/cpu/h6280/h6280.cpp
+++ b/src/devices/cpu/h6280/h6280.cpp
@@ -2225,9 +2225,9 @@ void h6280_device::state_string_export(const device_state_entry &entry, std::str
// helper function
//-------------------------------------------------
-util::disasm_interface *h6280_device::create_disassembler()
+std::unique_ptr<util::disasm_interface> h6280_device::create_disassembler()
{
- return new h6280_disassembler;
+ return std::make_unique<h6280_disassembler>();
}