Skip to content
Snippets Groups Projects
Verified Commit 886a2a66 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: made boot dump python2 compatible

parent d0e5dd89
No related branches found
No related tags found
1 merge request!16Support for Game Boy Color (CGB) 😎🖍️
......@@ -8,7 +8,7 @@ def print_buffer(filename):
try: data = file.read()
finally: file.close()
buffer = [str(byte) for byte in data]
buffer = [str(ord(byte)) for byte in data]
buffer_s = ", ".join(buffer)
print("[%s]" % buffer_s)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment