aboutsummaryrefslogtreecommitdiff
path: root/player/bin2h.py
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-04-17 22:05:24 +0100
committerJuan J. Martinez <jjm@usebox.net>2021-04-17 22:05:24 +0100
commita5745813e442b66ae6eed30bba81d1b3dd5cf634 (patch)
treeb302db1780350dc44543b81d49bfc1b2d4dff6a8 /player/bin2h.py
downloadbeeper-int-zx-a5745813e442b66ae6eed30bba81d1b3dd5cf634.tar.gz
beeper-int-zx-a5745813e442b66ae6eed30bba81d1b3dd5cf634.zip
Initial public release
Diffstat (limited to 'player/bin2h.py')
-rwxr-xr-xplayer/bin2h.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/player/bin2h.py b/player/bin2h.py
new file mode 100755
index 0000000..d0395fd
--- /dev/null
+++ b/player/bin2h.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python3
+
+from argparse import ArgumentParser
+
+__version__ = "1.0"
+
+
+def main():
+
+ parser = ArgumentParser(description="Bin to H converter",
+ epilog="Copyright (C) 2014-2021 Juan J Martinez <jjm@usebox.net>",
+ )
+
+ parser.add_argument("--version", action="version",
+ version="%(prog)s " + __version__)
+ parser.add_argument("file", help="file to convert")
+ parser.add_argument("id", help="variable to use")
+
+ args = parser.parse_args()
+
+ with open(args.file, "rb") as fd:
+ data = bytearray(fd.read())
+
+ data_out = ""
+ for part in range(0, len(data), 8):
+ if data_out:
+ data_out += ",\n"
+ data_out += ', '.join(["0x%02x" % b for b in data[part: part + 8]])
+
+ print("/* file: %s */" % args.file)
+ print("#define %s_LEN %d\n" % (args.id.upper(), len(data)))
+ print("#ifdef LOCAL")
+ print("const unsigned char %s[] = {\n%s\n};\n" % (args.id, data_out))
+ print("#else")
+ print("extern const unsigned char %s[];\n" % args.id)
+ print("#endif")
+
+
+if __name__ == "__main__":
+ main()