diff options
author | 2014-04-26 10:31:13 +0000 | |
---|---|---|
committer | 2014-04-26 10:31:13 +0000 | |
commit | bb221d260a2531cdbc0125071bc73583cee39e1a (patch) | |
tree | 4c6c6b622fa813d037b0b0fdc29459269cdc5053 /src/emu/cpu/h8/h8make.py | |
parent | 862d0e262d91d20f736b3be0d2285f1f71b2b5f2 (diff) |
h8_sci: Implement sync-start [O. Galibert]
h8: Fix problem in the sleep instruction [O. Galibert]
at45dbxx: Fix communications [O. Galibert]
Diffstat (limited to 'src/emu/cpu/h8/h8make.py')
-rw-r--r-- | src/emu/cpu/h8/h8make.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/h8/h8make.py b/src/emu/cpu/h8/h8make.py index 9d32cf6d912..543087708f3 100644 --- a/src/emu/cpu/h8/h8make.py +++ b/src/emu/cpu/h8/h8make.py @@ -54,7 +54,7 @@ def save_full_one(f, t, name, source): print >>f, line substate = substate + 1 elif has_eat(line): - print >>f, "\ticount = bcount; inst_substate = %d; return;" % substate + print >>f, "\tif(icount) icount = bcount; inst_substate = %d; return;" % substate substate = substate + 1 else: print >>f, line @@ -74,7 +74,7 @@ def save_partial_one(f, t, name, source): print >>f, line substate = substate + 1 elif has_eat(line): - print >>f, "\ticount = bcount; inst_substate = %d; return;" % substate + print >>f, "\tif(icount) icount = bcount; inst_substate = %d; return;" % substate print >>f, "case %d:;" % substate substate = substate + 1 else: |