mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
m6809make.py: Fix syntax error on Python 3. (nw)
This commit is contained in:
parent
9d95181bd4
commit
ab93e714fd
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user