From ab93e714fd1fb5c79901aae9102d6417317d9912 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Tue, 3 Nov 2015 10:55:34 -0800 Subject: m6809make.py: Fix syntax error on Python 3. (nw) --- src/devices/cpu/m6809/m6809make.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/devices/cpu') diff --git a/src/devices/cpu/m6809/m6809make.py b/src/devices/cpu/m6809/m6809make.py index 28e018f8b2d..c3d5b0f66ee 100644 --- a/src/devices/cpu/m6809/m6809make.py +++ b/src/devices/cpu/m6809/m6809make.py @@ -116,10 +116,10 @@ for i in range(0, state): print("\tcase %d: goto %s;" % (i, states_to_dispatch.get(i, "state_%d" % i))) # Output a default case -print "\tdefault:" -print "\t\tfatalerror(\"Unexpected state\");" -print "\t\tbreak;" -print +print("\tdefault:") +print("\t\tfatalerror(\"Unexpected state\");") +print("\t\tbreak;") +print("") # Finally output the text -print text +print(text) -- cgit v1.2.3-70-g09d2