summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tlcs900/tlcs900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tlcs900/tlcs900.cpp')
-rw-r--r--src/devices/cpu/tlcs900/tlcs900.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tlcs900/tlcs900.cpp b/src/devices/cpu/tlcs900/tlcs900.cpp
index 3fd84d6d9e4..64e7e928f7a 100644
--- a/src/devices/cpu/tlcs900/tlcs900.cpp
+++ b/src/devices/cpu/tlcs900/tlcs900.cpp
@@ -149,9 +149,9 @@ void tmp95c063_device::device_config_complete()
}
-util::disasm_interface *tlcs900h_device::create_disassembler()
+std::unique_ptr<util::disasm_interface> tlcs900h_device::create_disassembler()
{
- return new tlcs900_disassembler;
+ return std::make_unique<tlcs900_disassembler>();
}