summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tlcs90/tlcs90.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tlcs90/tlcs90.cpp')
-rw-r--r--src/devices/cpu/tlcs90/tlcs90.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tlcs90/tlcs90.cpp b/src/devices/cpu/tlcs90/tlcs90.cpp
index 39b5d78267f..b6a01d81178 100644
--- a/src/devices/cpu/tlcs90/tlcs90.cpp
+++ b/src/devices/cpu/tlcs90/tlcs90.cpp
@@ -2872,7 +2872,7 @@ void tlcs90_device::state_string_export(const device_state_entry &entry, std::st
}
}
-util::disasm_interface *tlcs90_device::create_disassembler()
+std::unique_ptr<util::disasm_interface> tlcs90_device::create_disassembler()
{
- return new tlcs90_disassembler;
+ return std::make_unique<tlcs90_disassembler>();
}