mirror of
https://github.com/wiiu-env/ROBChain.git
synced 2024-11-04 18:55:05 +01:00
5 lines
176 B
Python
5 lines
176 B
Python
with open('payload.bin', 'rb') as stringFile:
|
|
with open('payload.s', 'w') as f:
|
|
for byte in stringFile.read():
|
|
print('byte %s' % hex(byte), file=f)
|