summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mcs96
diff options
context:
space:
mode:
author Oliver Stöneberg <oliverst@online.de>2015-03-05 16:38:07 +0100
committer Oliver Stöneberg <oliverst@online.de>2015-03-05 16:38:07 +0100
commit87fb14a840bfd8b288a7b7a98edbf6cdf0f5808c (patch)
tree3f891cb8f0f26b488e60f0741350dd737b245be0 /src/emu/cpu/mcs96
parentad02fe3b8b3bc5f8ae17e6059ab8456ddf459d7e (diff)
more Python script cleanups based on PyCharm inspection (nw)
Diffstat (limited to 'src/emu/cpu/mcs96')
-rw-r--r--src/emu/cpu/mcs96/mcs96make.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/mcs96/mcs96make.py b/src/emu/cpu/mcs96/mcs96make.py
index 59ef2da7453..fdc8da6c877 100644
--- a/src/emu/cpu/mcs96/mcs96make.py
+++ b/src/emu/cpu/mcs96/mcs96make.py
@@ -158,7 +158,7 @@ class OpcodeList:
if opc != None:
nm = opc.name + "_" + opc.amode
if opc.is_196:
- nm = nm + "_196"
+ nm += "_196"
print >>f, "\tcase 0x%03x: %s_full(); break;" % (i, nm)
print >>f, "\tcase 0x200: fetch_full(); break;"
print >>f, "\tcase 0x201: fetch_noirq_full(); break;"