diff options
author | 2016-11-18 16:36:56 -0500 | |
---|---|---|
committer | 2016-11-18 16:36:56 -0500 | |
commit | 8566c9cfe9a83dcd45ccb625920209f5f933b897 (patch) | |
tree | 6c53013bf3ba3c16e1ee4007b47b30e23d4f6eee /src/devices/cpu | |
parent | 7d2a5d1b023034cf8e1e9c96057c2475125cccb0 (diff) |
Missed this Python script that generates code
Diffstat (limited to 'src/devices/cpu')
-rwxr-xr-x | src/devices/cpu/tms57002/tmsmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms57002/tmsmake.py b/src/devices/cpu/tms57002/tmsmake.py index 1aaa0fc59e4..19336061c11 100755 --- a/src/devices/cpu/tms57002/tmsmake.py +++ b/src/devices/cpu/tms57002/tmsmake.py @@ -206,7 +206,7 @@ class Instruction: opcode, args = self.GetDasmInfo() args = [", " + a for a in args] print("%scase 0x%02x:" % (prefix, self._id), file=f) - print("%s sprintf(buf, \"%s\"%s);" % (prefix, opcode, "".join(args)), file=f) + print("%s util::stream_format(stream, \"%s\"%s);" % (prefix, opcode, "".join(args)), file=f) print("%s break;" % prefix, file=f) |