OpenSNES
Modern Open-Source SNES Development SDK
Loading...
Searching...
No Matches
lzss.h
Go to the documentation of this file.
1
33
34#ifndef OPENSNES_LZSS_H
35#define OPENSNES_LZSS_H
36
37#include <snes/types.h>
38
53void LzssDecodeVram(const u8 *source, u16 address);
54
55#endif /* OPENSNES_LZSS_H */
unsigned short u16
16-bit unsigned integer (0 to 65535)
Definition types.h:53
unsigned char u8
8-bit unsigned integer (0 to 255)
Definition types.h:47
void LzssDecodeVram(const u8 *source, u16 address)
Decompress LZ77 data directly to VRAM.
OpenSNES Standard Types.