summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tp0320.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms1000/tp0320.cpp')
-rw-r--r--src/devices/cpu/tms1000/tp0320.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms1000/tp0320.cpp b/src/devices/cpu/tms1000/tp0320.cpp
index 395f437b811..b27543e9e1b 100644
--- a/src/devices/cpu/tms1000/tp0320.cpp
+++ b/src/devices/cpu/tms1000/tp0320.cpp
@@ -52,9 +52,9 @@ MACHINE_CONFIG_END
// disasm
-util::disasm_interface *tp0320_cpu_device::create_disassembler()
+std::unique_ptr<util::disasm_interface> tp0320_cpu_device::create_disassembler()
{
- return new tp0320_disassembler;
+ return std::make_unique<tp0320_disassembler>();
}