mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-05 01:25:15 +01:00
16 lines
257 B
Python
Executable File
16 lines
257 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys, os, os.path, struct
|
|
import pywii as wii
|
|
|
|
arc = open(sys.argv[1], "rb")
|
|
|
|
tag, fstoff, fstsize, dataoff = struct.unpack(">IIII16x",arc.read(0x20))
|
|
|
|
arc.seek(fstoff)
|
|
fst = arc.read(fstsize)
|
|
|
|
fst = wii.WiiFST(fst)
|
|
|
|
fst.show()
|