working again!

This commit is contained in:
icefire 2009-06-12 13:28:18 -07:00
parent 025b69f436
commit 439bc426f2
15 changed files with 9 additions and 9 deletions

BIN
Struct.pyc Normal file

Binary file not shown.

BIN
TPL.pyc Normal file

Binary file not shown.

1
U8.py
View File

@ -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.

BIN
U8.pyc Normal file

Binary file not shown.

View File

@ -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

Binary file not shown.

View File

@ -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

Binary file not shown.

BIN
compression.pyc Normal file

Binary file not shown.

BIN
disc.pyc Normal file

Binary file not shown.

BIN
nand.pyc Normal file

Binary file not shown.

BIN
png.pyc Executable file

Binary file not shown.

3
test.py Normal file
View File

@ -0,0 +1,3 @@
import __init__ as Wii
Wii.U8(".").pack("testing.u8")

BIN
testing.u8 Normal file

Binary file not shown.

BIN
title.pyc Normal file

Binary file not shown.