R-PAGE
Resistance's Portable-Adventure-Game-Engine
doynax.h
Go to the documentation of this file.
1 /* Doynamite 68k ASM decompression routine by Oxyron.
2  Lempel-Ziv decompressor by Johan "Doynax" Forslöf.
3  See: https://github.com/AxisOxy/Planet-Rocklobster/tree/master/tools/doynamite68k
4 */
5 
6 #ifdef LATTICE
7 #include <clib/dos_protos.h>
8 #include <clib/exec_protos.h>
9 #include <clib/alib_protos.h>
10 #include <pragmas/dos_pragmas.h>
11 #include <pragmas/exec_pragmas.h>
12 #include <libraries/dos.h>
13 #include <dos/rdargs.h>
14 #include <utility/tagitem.h>
15 #include <devices/audio.h>
16 #include <exec/execbase.h>
17 #include <exec/memory.h>
18 #include <string.h>
19 #include <hardware/cia.h>
20 
21 #define DOYNAX_ADDR_PAD(A) ((A * 5) / 100)
22 #define DOYNAX_ALLOC_PAD(A) (A + (2 * DOYNAX_ADDR_PAD(A)))
23 
24 extern __asm void doynaxdepack( register __a0 UBYTE *Source, /* Input buffer to be decompressed */
25  register __a1 UBYTE *Destination); /* Output buffer. */
26 
27  #endif
unsigned char UBYTE
Definition: utils.h:20