mirror of
https://github.com/grp/Wii.py.git
synced 2025-06-18 14:55:35 -04:00
working again!
This commit is contained in:
parent
025b69f436
commit
439bc426f2
BIN
Struct.pyc
Normal file
BIN
Struct.pyc
Normal file
Binary file not shown.
1
U8.py
1
U8.py
@ -8,7 +8,6 @@ from Struct import Struct
|
||||
from common import *
|
||||
|
||||
|
||||
|
||||
class U8():
|
||||
"""This class can unpack and pack U8 archives, which are used all over the Wii. They are often used in Banners and contents in Downloadable Titles. Please remove all headers and compression first, kthx.
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
__all__ = []
|
||||
|
||||
from common import *
|
||||
from compression import *
|
||||
from disc import *
|
||||
from nand import *
|
||||
from title import *
|
||||
from TPL import *
|
||||
from U8 import *
|
BIN
__init__.pyc
Normal file
BIN
__init__.pyc
Normal file
Binary file not shown.
@ -5,13 +5,6 @@ import png
|
||||
from Crypto.Cipher import AES
|
||||
from Struct import Struct
|
||||
|
||||
from compression import *
|
||||
from disc import *
|
||||
from nand import *
|
||||
from title import *
|
||||
from TPL import *
|
||||
from U8 import *
|
||||
|
||||
|
||||
def align(x, boundary):
|
||||
return x + (x % boundary)
|
||||
|
BIN
common.pyc
Normal file
BIN
common.pyc
Normal file
Binary file not shown.
BIN
compression.pyc
Normal file
BIN
compression.pyc
Normal file
Binary file not shown.
3
test.py
Normal file
3
test.py
Normal file
@ -0,0 +1,3 @@
|
||||
import __init__ as Wii
|
||||
|
||||
Wii.U8(".").pack("testing.u8")
|
BIN
testing.u8
Normal file
BIN
testing.u8
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user