mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-25 20:16:56 +01:00
4cf05be0ff
-added wiiu gamepad compatibility when booting from wii vc with patched fw.img using libwiidrc -removed upper file limit from wiiload (useful when used with wiiu homebrew launcher)
14 lines
226 B
Python
14 lines
226 B
Python
import md5, sys, struct
|
|
|
|
data= open(sys.argv[1],"rb").read()
|
|
|
|
digest = md5.new(data).digest()
|
|
|
|
hdr = struct.pack(">4sI8x","IMD5",len(data))
|
|
|
|
f2 = open(sys.argv[2],"wb")
|
|
f2.write(hdr)
|
|
f2.write(digest)
|
|
f2.write(data)
|
|
f2.close()
|