File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # StrikeLZSS
2
+ LZSS compressor & decompressor for * Desert Strike* , * Jungle Strike* , * Urban Strike* (Sega Mega Drive/Genesis).
3
+ ## Usage
4
+ ### Editing ROM
5
+ Apply master code:
6
+ ```
7
+ Desert Strike - 0FFFC4:4E71
8
+ Jungle Strike - 1FF2E0:4E75
9
+ Urban Strike - 1FF0D4:4E75
10
+ ```
11
+ ### Searching compressed art
12
+ Set the execution (PC) breakpoint at:
13
+ ```
14
+ Desert Strike - $006112
15
+ Jungle Strike - $04619C
16
+ Urban Strike - $00762A
17
+ ```
18
+ When execution stops, register ` A2 ` contains the offset in the ROM.
19
+ ### Program usage
20
+ Decompress:
21
+ ```
22
+ StrikeLZSS -d input.bin output.bin -p 0x12AB
23
+ ```
24
+ -p OFFSET - the starting position in the input file (hex - 0xAB or dec - 171).
25
+
26
+ Compress:
27
+ ```
28
+ StrikeLZSS input.bin output.bin
29
+ ```
You can’t perform that action at this time.
0 commit comments