summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/drcuml.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/drcuml.c')
-rw-r--r--src/emu/cpu/drcuml.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/emu/cpu/drcuml.c b/src/emu/cpu/drcuml.c
index 2e56b7a4c47..a261a9dfaad 100644
--- a/src/emu/cpu/drcuml.c
+++ b/src/emu/cpu/drcuml.c
@@ -128,7 +128,10 @@ drcuml_state::drcuml_state(device_t &device, drc_cache &cache, UINT32 flags, int
{
// if we're to log, create the logfile
if (device.machine().options().drc_log_uml())
- m_umllog = fopen("drcuml.asm", "w");
+ {
+ astring filename("drcuml_", m_device.shortname(), ".asm");
+ m_umllog = fopen(filename.cstr(), "w");
+ }
}