summaryrefslogtreecommitdiff
path: root/utils/dump_text.py
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi@gmail.com>2020-09-22 15:57:42 -0400
committerRangi <remy.oukaour+rangi@gmail.com>2020-09-22 15:57:42 -0400
commit82cec686eca214edc5b2749b0f7a3cad60cb507b (patch)
treede67a5062eca335c0472ca70c6cb29421be88bd5 /utils/dump_text.py
parente5c256c092df34ab95bdd2dd9fe4ddef288182b4 (diff)
Use Japanese charmap characters
Diffstat (limited to 'utils/dump_text.py')
-rw-r--r--utils/dump_text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/dump_text.py b/utils/dump_text.py
index c36298e..75a3672 100644
--- a/utils/dump_text.py
+++ b/utils/dump_text.py
@@ -179,7 +179,7 @@ if __name__ == '__main__':
help='dump text codes (line breaks, prompt etc) as macros instead of inline text'
)
ap.add_argument('-o', dest='outfile', default=sys.stdout, help='output file name')
- ap.add_argument('-m', dest='charmap', default='../charmap.asm', help='charmap file name')
+ ap.add_argument('-m', dest='charmap', default='../constants/charmap.asm', help='charmap file name')
ap.add_argument('rom', help='path to ROM')
ap.add_argument('start', help='start offset', type=conv_address)
ap.add_argument('end', help='end offset', type=conv_address, nargs='?')