-
Notifications
You must be signed in to change notification settings - Fork 10
/
ldepack.s
260 lines (232 loc) · 5.75 KB
/
ldepack.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
; Loader depacker
include kernal.s
include memory.s
org exomizerCodeStart
tablBi = depackBuffer
tablLo = depackBuffer + 52
tablHi = depackBuffer + 104
; -------------------------------------------------------------------
; This source code is altered and is not the original version found on
; the Exomizer homepage.
; It contains modifications made by Krill/Plush to depack a packed file
; crunched forward and to work with his loader.
;
; Modified for Hessian (optimizations, max. sequence 255 bytes) by
; Lasse Oorni
; -------------------------------------------------------------------
;
; Copyright (c) 2002 - 2005 Magnus Lind.
;
; This software is provided 'as-is', without any express or implied warranty.
; In no event will the authors be held liable for any damages arising from
; the use of this software.
;
; Permission is granted to anyone to use this software for any purpose,
; including commercial applications, and to alter it and redistribute it
; freely, subject to the following restrictions:
;
; 1. The origin of this software must not be misrepresented; you must not
; claim that you wrote the original software. If you use this software in a
; product, an acknowledgment in the product documentation would be
; appreciated but is not required.
;
; 2. Altered source versions must be plainly marked as such, and must not
; be misrepresented as being the original software.
;
; 3. This notice may not be removed or altered from any distribution.
;
; 4. The names of this software and/or it's copyright holders may not be
; used to endorse or promote products derived from this software without
; specific prior written permission.
; Load file packed with Exomizer 2 forward mode
;
; Parameters: A,X load address, fileNumber
; Returns: C=0 if loaded OK, or C=1 and error code in A (see GetByte)
; Modifies: A,X,Y
LoadFile: sta zpDestLo
stx zpDestHi
jsr OpenFile
Depack:
; -------------------------------------------------------------------
; init zeropage, x and y regs.
;
init_zp:
jsr GetByte
bcs loaderror ;Error checking only done here, since drivecode will retry endlessly
sta zpBitBuf
ldy #0
; -------------------------------------------------------------------
; calculate tables
; x and y must be #0 when entering
;
nextone:
ldx #1
tya
and #$0f
beq shortcut ; start with new sequence
txa ; this clears reg a
lsr ; and sets the carry flag
ldx tablBi-1,y
rolle:
rol
rol zpBitsHi
dex
bpl rolle ; c = 0 after this (rol zpBitsHi)
adc tablLo-1,y
tax
lda zpBitsHi
adc tablHi-1,y
shortcut:
sta tablHi,y
txa
sta tablLo,y
ldx #4
jsr get_bits ; clears x-reg.
sta tablBi,y
iny
cpy #52
bne nextone
begin:
ldy #$ff
; -------------------------------------------------------------------
; decruncher entry point, needs calculated tables
;
getgamma:
lsr zpBitBuf
bne norefill
jsr GetByte
sec
ror
sta zpBitBuf
norefill:
iny
bcc getgamma
bne sequence
literal:
jsr GetByte
sta (zpDestLo),y
inc zpDestLo
bne begin
inchi:
inc zpDestHi
bne begin
loaderror:
rts
sequence:
cpy #$11
beq eof ; gamma = 17 : end of file
; -------------------------------------------------------------------
; calculate length of sequence (zp_len)
;
ldx tablBi-1,y
jsr get_bits
adc tablLo-1,y ; we have now calculated zpLenLo
sta zpLenLo
; -------------------------------------------------------------------
; here we decide what offset table to use
; x is 0 here
;
ldy zpLenLo
cpy #$04
bcc size123
nots123:
ldy #$03
size123:
ldx tablBit-1,y
jsr get_bits
adc tablOff-1,y ; c = 0 after this.
tay ; 1 <= y <= 52 here
; -------------------------------------------------------------------
; calulate absolute offset (zp_src)
;
ldx tablBi,y
jsr get_bits
adc tablLo,y
bcc skipcarry
inc zpBitsHi
skipcarry:
sec
eor #$ff
adc zpDestLo
sta zpSrcLo
lda zpDestHi
sbc zpBitsHi
sbc tablHi,y
sta zpSrcHi
; -------------------------------------------------------------------
; main copy loop
; y = length lo
;
copy_start:
ldy #$00
copy_next:
lda (zpSrcLo),y
sta (zpDestLo),y
iny
cpy zpLenLo
bne copy_next
tya
clc
adc zpDestLo
sta zpDestLo
bcc begin
bcs inchi
eof:
clc
rts
; -------------------------------------------------------------------
; get bits (29 bytes)
;
; args:
; x = number of bits to get
; returns:
; a = #bits_lo
; x = #0
; c = 0
; z = 1
; zpBitsHi = #bits_hi
; notes:
; y is untouched
; -------------------------------------------------------------------
get_bits:
lda #$00
sta zpBitsHi
cpx #$01
bcc bits_done
bits_next:
lsr zpBitBuf
bne bits_ok
pha
stx loadTempReg
jsr GetByte
ldx loadTempReg
sec
ror
sta zpBitBuf
pla
bits_ok:
rol
rol zpBitsHi
dex
bne bits_next
bits_done:
rts
tablBit: dc.b 2,4,4 ;Exomizer static tables
tablOff: dc.b 48,32,16
; -------------------------------------------------------------------
; end of decruncher
; -------------------------------------------------------------------
OpenFile: sei
lda #$35
sta $01
rts
SaveFile = OpenFile+3
org OpenFile+6
GetByte: inc $01
jsr ChrIn
sei
dec $01
clc
rts
packedLoaderStart:
incbin loader.pak