| Previous | 199869 Revisions | Next |
| r34613 Monday 26th January, 2015 at 07:17:28 UTC by Mike Naberezny |
|---|
| Remove unused imports. (nw) |
| [src/build] | file2str.py png.py |
| [src/emu/cpu/arcompact] | arcompact_make.py |
| [src/emu/cpu/m6809] | m6809make.py |
| r243124 | r243125 | |
|---|---|---|
| 2 | 2 | |
| 3 | 3 | from __future__ import with_statement |
| 4 | 4 | |
| 5 | import string | |
| 6 | 5 | import sys |
| 7 | 6 | import os |
| 8 | 7 |
| r243124 | r243125 | |
|---|---|---|
| 2660 | 2660 | |
| 2661 | 2661 | # Parse command line arguments |
| 2662 | 2662 | from optparse import OptionParser |
| 2663 | import re | |
| 2664 | 2663 | version = '%prog ' + __version__ |
| 2665 | 2664 | parser = OptionParser(version=version) |
| 2666 | 2665 | parser.set_usage("%prog [options] [imagefile]") |
| r243124 | r243125 | |
|---|---|---|
| 1 | 1 | #!/usr/bin/python |
| 2 | 2 | |
| 3 | 3 | import sys |
| 4 | import re | |
| 5 | 4 | |
| 6 | 5 | def EmitGroup04_Handle_NZ_Flags(f, funcname, opname): |
| 7 | 6 | print >>f, " if (result & 0x80000000) { STATUS32_SET_N; }" |
| r243124 | r243125 | |
|---|---|---|
| 1 | 1 | #!/usr/bin/python |
| 2 | 2 | |
| 3 | 3 | import sys |
| 4 | import logging | |
| 5 | import fileinput | |
| 6 | 4 | import re |
| 7 | 5 | |
| 8 | 6 | # Initial state |
| https://github.com/mamedev/mame/commit/3c3e649d72f06b4bbea1087cd4eaa33c033bba64 |
| Previous | 199869 Revisions | Next |