1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/apple2/lzg.h

12 lines
326 B
C
Raw Permalink Normal View History

/*
Decode a LZG buffer (without the 16-byte header) to memory.
src = source buffer
dest = destination buffer
end = 1 + final byte in destination buffer
*/
unsigned char* lzg_decode_vram(const unsigned char* src,
unsigned char* dest,
unsigned char* end);