mirror of
https://github.com/NinjaCheetah/libWiiPy.git
synced 2025-04-25 12:51:01 -04:00
Added docs for LZ77 module
This commit is contained in:
parent
f0b79e1f39
commit
93790d6f58
@ -3,10 +3,11 @@
|
||||
## Modules
|
||||
The `libWiiPy.archive` package contains modules for packing and extracting archive formats used by the Wii. This currently includes packing and unpacking support for U8 archives and decompression support for ASH archives.
|
||||
|
||||
| Module | Description |
|
||||
|--------------------------------------|---------------------------------------------------------|
|
||||
| [libWiiPy.archive.ash](/archive/ash) | Provides support for decompressing ASH archives |
|
||||
| [libWiiPy.archive.u8](/archive/u8) | Provides support for packing and extracting U8 archives |
|
||||
| Module | Description |
|
||||
|----------------------------------------|---------------------------------------------------------|
|
||||
| [libWiiPy.archive.ash](/archive/ash) | Provides support for decompressing ASH archives |
|
||||
| [libWiiPy.archive.lz77](/archive/lz77) | Provides support for the LZ77 compression scheme |
|
||||
| [libWiiPy.archive.u8](/archive/u8) | Provides support for packing and extracting U8 archives |
|
||||
|
||||
### libWiiPy.archive Package Contents
|
||||
|
||||
@ -14,5 +15,6 @@ The `libWiiPy.archive` package contains modules for packing and extracting archi
|
||||
:maxdepth: 4
|
||||
|
||||
/archive/ash
|
||||
/archive/lz77
|
||||
/archive/u8
|
||||
```
|
||||
|
12
docs/source/archive/lz77.md
Normal file
12
docs/source/archive/lz77.md
Normal file
@ -0,0 +1,12 @@
|
||||
# libWiiPy.archive.lz77 Module
|
||||
|
||||
The `libWiiPy.archive.lz77` module provides support for handling LZ77 compression, which is a compression format used across the Wii and other Nintendo consoles.
|
||||
|
||||
## Module Contents
|
||||
|
||||
```{eval-rst}
|
||||
.. automodule:: libWiiPy.archive.lz77
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user