diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/des/asm/des-586.pl | 452 |
1 files changed, 0 insertions, 452 deletions
diff --git a/src/lib/libcrypto/des/asm/des-586.pl b/src/lib/libcrypto/des/asm/des-586.pl deleted file mode 100644 index e11b2ef80f..0000000000 --- a/src/lib/libcrypto/des/asm/des-586.pl +++ /dev/null | |||
@@ -1,452 +0,0 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | # | ||
3 | # The inner loop instruction sequence and the IP/FP modifications are from | ||
4 | # Svend Olaf Mikkelsen <svolaf@inet.uni-c.dk> | ||
5 | # | ||
6 | |||
7 | $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; | ||
8 | push(@INC,"${dir}","${dir}../../perlasm"); | ||
9 | require "x86asm.pl"; | ||
10 | require "cbc.pl"; | ||
11 | require "desboth.pl"; | ||
12 | |||
13 | # base code is in microsft | ||
14 | # op dest, source | ||
15 | # format. | ||
16 | # | ||
17 | |||
18 | &asm_init($ARGV[0],"des-586.pl"); | ||
19 | |||
20 | $L="edi"; | ||
21 | $R="esi"; | ||
22 | $trans="ebp"; | ||
23 | $small_footprint=1 if (grep(/\-DOPENSSL_SMALL_FOOTPRINT/,@ARGV)); | ||
24 | # one can discuss setting this variable to 1 unconditionally, as | ||
25 | # the folded loop is only 3% slower than unrolled, but >7 times smaller | ||
26 | |||
27 | &public_label("DES_SPtrans"); | ||
28 | |||
29 | &DES_encrypt_internal(); | ||
30 | &DES_decrypt_internal(); | ||
31 | &DES_encrypt("DES_encrypt1",1); | ||
32 | &DES_encrypt("DES_encrypt2",0); | ||
33 | &DES_encrypt3("DES_encrypt3",1); | ||
34 | &DES_encrypt3("DES_decrypt3",0); | ||
35 | &cbc("DES_ncbc_encrypt","DES_encrypt1","DES_encrypt1",0,4,5,3,5,-1); | ||
36 | &cbc("DES_ede3_cbc_encrypt","DES_encrypt3","DES_decrypt3",0,6,7,3,4,5); | ||
37 | &DES_SPtrans(); | ||
38 | |||
39 | &asm_finish(); | ||
40 | |||
41 | sub DES_encrypt_internal() | ||
42 | { | ||
43 | &function_begin_B("_x86_DES_encrypt"); | ||
44 | |||
45 | if ($small_footprint) | ||
46 | { | ||
47 | &lea("edx",&DWP(128,"ecx")); | ||
48 | &push("edx"); | ||
49 | &push("ecx"); | ||
50 | &set_label("eloop"); | ||
51 | &D_ENCRYPT(0,$L,$R,0,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
52 | &comment(""); | ||
53 | &D_ENCRYPT(1,$R,$L,2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
54 | &comment(""); | ||
55 | &add("ecx",16); | ||
56 | &cmp("ecx",&swtmp(1)); | ||
57 | &mov(&swtmp(0),"ecx"); | ||
58 | &jb(&label("eloop")); | ||
59 | &add("esp",8); | ||
60 | } | ||
61 | else | ||
62 | { | ||
63 | &push("ecx"); | ||
64 | for ($i=0; $i<16; $i+=2) | ||
65 | { | ||
66 | &comment("Round $i"); | ||
67 | &D_ENCRYPT($i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
68 | &comment("Round ".sprintf("%d",$i+1)); | ||
69 | &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
70 | } | ||
71 | &add("esp",4); | ||
72 | } | ||
73 | &ret(); | ||
74 | |||
75 | &function_end_B("_x86_DES_encrypt"); | ||
76 | } | ||
77 | |||
78 | sub DES_decrypt_internal() | ||
79 | { | ||
80 | &function_begin_B("_x86_DES_decrypt"); | ||
81 | |||
82 | if ($small_footprint) | ||
83 | { | ||
84 | &push("ecx"); | ||
85 | &lea("ecx",&DWP(128,"ecx")); | ||
86 | &push("ecx"); | ||
87 | &set_label("dloop"); | ||
88 | &D_ENCRYPT(0,$L,$R,-2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
89 | &comment(""); | ||
90 | &D_ENCRYPT(1,$R,$L,-4,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
91 | &comment(""); | ||
92 | &sub("ecx",16); | ||
93 | &cmp("ecx",&swtmp(1)); | ||
94 | &mov(&swtmp(0),"ecx"); | ||
95 | &ja(&label("dloop")); | ||
96 | &add("esp",8); | ||
97 | } | ||
98 | else | ||
99 | { | ||
100 | &push("ecx"); | ||
101 | for ($i=15; $i>0; $i-=2) | ||
102 | { | ||
103 | &comment("Round $i"); | ||
104 | &D_ENCRYPT(15-$i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
105 | &comment("Round ".sprintf("%d",$i-1)); | ||
106 | &D_ENCRYPT(15-$i+1,$R,$L,($i-1)*2,$trans,"eax","ebx","ecx","edx",&swtmp(0)); | ||
107 | } | ||
108 | &add("esp",4); | ||
109 | } | ||
110 | &ret(); | ||
111 | |||
112 | &function_end_B("_x86_DES_decrypt"); | ||
113 | } | ||
114 | |||
115 | sub DES_encrypt | ||
116 | { | ||
117 | local($name,$do_ip)=@_; | ||
118 | |||
119 | &function_begin_B($name); | ||
120 | |||
121 | &push("esi"); | ||
122 | &push("edi"); | ||
123 | |||
124 | &comment(""); | ||
125 | &comment("Load the 2 words"); | ||
126 | |||
127 | if ($do_ip) | ||
128 | { | ||
129 | &mov($R,&wparam(0)); | ||
130 | &xor( "ecx", "ecx" ); | ||
131 | |||
132 | &push("ebx"); | ||
133 | &push("ebp"); | ||
134 | |||
135 | &mov("eax",&DWP(0,$R,"",0)); | ||
136 | &mov("ebx",&wparam(2)); # get encrypt flag | ||
137 | &mov($L,&DWP(4,$R,"",0)); | ||
138 | &comment(""); | ||
139 | &comment("IP"); | ||
140 | &IP_new("eax",$L,$R,3); | ||
141 | } | ||
142 | else | ||
143 | { | ||
144 | &mov("eax",&wparam(0)); | ||
145 | &xor( "ecx", "ecx" ); | ||
146 | |||
147 | &push("ebx"); | ||
148 | &push("ebp"); | ||
149 | |||
150 | &mov($R,&DWP(0,"eax","",0)); | ||
151 | &mov("ebx",&wparam(2)); # get encrypt flag | ||
152 | &rotl($R,3); | ||
153 | &mov($L,&DWP(4,"eax","",0)); | ||
154 | &rotl($L,3); | ||
155 | } | ||
156 | |||
157 | &picsetup($trans); | ||
158 | &picsymbol($trans, &label("DES_SPtrans"), $trans); | ||
159 | |||
160 | &mov( "ecx", &wparam(1) ); | ||
161 | |||
162 | &cmp("ebx","0"); | ||
163 | &je(&label("decrypt")); | ||
164 | &call("_x86_DES_encrypt"); | ||
165 | &jmp(&label("done")); | ||
166 | &set_label("decrypt"); | ||
167 | &call("_x86_DES_decrypt"); | ||
168 | &set_label("done"); | ||
169 | |||
170 | if ($do_ip) | ||
171 | { | ||
172 | &comment(""); | ||
173 | &comment("FP"); | ||
174 | &mov("edx",&wparam(0)); | ||
175 | &FP_new($L,$R,"eax",3); | ||
176 | |||
177 | &mov(&DWP(0,"edx","",0),"eax"); | ||
178 | &mov(&DWP(4,"edx","",0),$R); | ||
179 | } | ||
180 | else | ||
181 | { | ||
182 | &comment(""); | ||
183 | &comment("Fixup"); | ||
184 | &rotr($L,3); # r | ||
185 | &mov("eax",&wparam(0)); | ||
186 | &rotr($R,3); # l | ||
187 | &mov(&DWP(0,"eax","",0),$L); | ||
188 | &mov(&DWP(4,"eax","",0),$R); | ||
189 | } | ||
190 | |||
191 | &pop("ebp"); | ||
192 | &pop("ebx"); | ||
193 | &pop("edi"); | ||
194 | &pop("esi"); | ||
195 | &ret(); | ||
196 | |||
197 | &function_end_B($name); | ||
198 | } | ||
199 | |||
200 | sub D_ENCRYPT | ||
201 | { | ||
202 | local($r,$L,$R,$S,$trans,$u,$tmp1,$tmp2,$t,$wp1)=@_; | ||
203 | |||
204 | &mov( $u, &DWP(&n2a($S*4),$tmp2,"",0)); | ||
205 | &xor( $tmp1, $tmp1); | ||
206 | &mov( $t, &DWP(&n2a(($S+1)*4),$tmp2,"",0)); | ||
207 | &xor( $u, $R); | ||
208 | &xor( $tmp2, $tmp2); | ||
209 | &xor( $t, $R); | ||
210 | &and( $u, "0xfcfcfcfc" ); | ||
211 | &and( $t, "0xcfcfcfcf" ); | ||
212 | &movb( &LB($tmp1), &LB($u) ); | ||
213 | &movb( &LB($tmp2), &HB($u) ); | ||
214 | &rotr( $t, 4 ); | ||
215 | &xor( $L, &DWP(" ",$trans,$tmp1,0)); | ||
216 | &movb( &LB($tmp1), &LB($t) ); | ||
217 | &xor( $L, &DWP("0x200",$trans,$tmp2,0)); | ||
218 | &movb( &LB($tmp2), &HB($t) ); | ||
219 | &shr( $u, 16); | ||
220 | &xor( $L, &DWP("0x100",$trans,$tmp1,0)); | ||
221 | &movb( &LB($tmp1), &HB($u) ); | ||
222 | &shr( $t, 16); | ||
223 | &xor( $L, &DWP("0x300",$trans,$tmp2,0)); | ||
224 | &movb( &LB($tmp2), &HB($t) ); | ||
225 | &and( $u, "0xff" ); | ||
226 | &and( $t, "0xff" ); | ||
227 | &xor( $L, &DWP("0x600",$trans,$tmp1,0)); | ||
228 | &xor( $L, &DWP("0x700",$trans,$tmp2,0)); | ||
229 | &mov( $tmp2, $wp1 ); | ||
230 | &xor( $L, &DWP("0x400",$trans,$u,0)); | ||
231 | &xor( $L, &DWP("0x500",$trans,$t,0)); | ||
232 | } | ||
233 | |||
234 | sub n2a | ||
235 | { | ||
236 | sprintf("%d",$_[0]); | ||
237 | } | ||
238 | |||
239 | # now has a side affect of rotating $a by $shift | ||
240 | sub R_PERM_OP | ||
241 | { | ||
242 | local($a,$b,$tt,$shift,$mask,$last)=@_; | ||
243 | |||
244 | &rotl( $a, $shift ) if ($shift != 0); | ||
245 | &mov( $tt, $a ); | ||
246 | &xor( $a, $b ); | ||
247 | &and( $a, $mask ); | ||
248 | # This can never succeed, and besides it is difficult to see what the | ||
249 | # idea was - Ben 13 Feb 99 | ||
250 | if (!$last eq $b) | ||
251 | { | ||
252 | &xor( $b, $a ); | ||
253 | &xor( $tt, $a ); | ||
254 | } | ||
255 | else | ||
256 | { | ||
257 | &xor( $tt, $a ); | ||
258 | &xor( $b, $a ); | ||
259 | } | ||
260 | &comment(""); | ||
261 | } | ||
262 | |||
263 | sub IP_new | ||
264 | { | ||
265 | local($l,$r,$tt,$lr)=@_; | ||
266 | |||
267 | &R_PERM_OP($l,$r,$tt, 4,"0xf0f0f0f0",$l); | ||
268 | &R_PERM_OP($r,$tt,$l,20,"0xfff0000f",$l); | ||
269 | &R_PERM_OP($l,$tt,$r,14,"0x33333333",$r); | ||
270 | &R_PERM_OP($tt,$r,$l,22,"0x03fc03fc",$r); | ||
271 | &R_PERM_OP($l,$r,$tt, 9,"0xaaaaaaaa",$r); | ||
272 | |||
273 | if ($lr != 3) | ||
274 | { | ||
275 | if (($lr-3) < 0) | ||
276 | { &rotr($tt, 3-$lr); } | ||
277 | else { &rotl($tt, $lr-3); } | ||
278 | } | ||
279 | if ($lr != 2) | ||
280 | { | ||
281 | if (($lr-2) < 0) | ||
282 | { &rotr($r, 2-$lr); } | ||
283 | else { &rotl($r, $lr-2); } | ||
284 | } | ||
285 | } | ||
286 | |||
287 | sub FP_new | ||
288 | { | ||
289 | local($l,$r,$tt,$lr)=@_; | ||
290 | |||
291 | if ($lr != 2) | ||
292 | { | ||
293 | if (($lr-2) < 0) | ||
294 | { &rotl($r, 2-$lr); } | ||
295 | else { &rotr($r, $lr-2); } | ||
296 | } | ||
297 | if ($lr != 3) | ||
298 | { | ||
299 | if (($lr-3) < 0) | ||
300 | { &rotl($l, 3-$lr); } | ||
301 | else { &rotr($l, $lr-3); } | ||
302 | } | ||
303 | |||
304 | &R_PERM_OP($l,$r,$tt, 0,"0xaaaaaaaa",$r); | ||
305 | &R_PERM_OP($tt,$r,$l,23,"0x03fc03fc",$r); | ||
306 | &R_PERM_OP($l,$r,$tt,10,"0x33333333",$l); | ||
307 | &R_PERM_OP($r,$tt,$l,18,"0xfff0000f",$l); | ||
308 | &R_PERM_OP($l,$tt,$r,12,"0xf0f0f0f0",$r); | ||
309 | &rotr($tt , 4); | ||
310 | } | ||
311 | |||
312 | sub DES_SPtrans | ||
313 | { | ||
314 | &rodataseg(); | ||
315 | &set_label("DES_SPtrans",64); | ||
316 | &data_word(0x02080800, 0x00080000, 0x02000002, 0x02080802); | ||
317 | &data_word(0x02000000, 0x00080802, 0x00080002, 0x02000002); | ||
318 | &data_word(0x00080802, 0x02080800, 0x02080000, 0x00000802); | ||
319 | &data_word(0x02000802, 0x02000000, 0x00000000, 0x00080002); | ||
320 | &data_word(0x00080000, 0x00000002, 0x02000800, 0x00080800); | ||
321 | &data_word(0x02080802, 0x02080000, 0x00000802, 0x02000800); | ||
322 | &data_word(0x00000002, 0x00000800, 0x00080800, 0x02080002); | ||
323 | &data_word(0x00000800, 0x02000802, 0x02080002, 0x00000000); | ||
324 | &data_word(0x00000000, 0x02080802, 0x02000800, 0x00080002); | ||
325 | &data_word(0x02080800, 0x00080000, 0x00000802, 0x02000800); | ||
326 | &data_word(0x02080002, 0x00000800, 0x00080800, 0x02000002); | ||
327 | &data_word(0x00080802, 0x00000002, 0x02000002, 0x02080000); | ||
328 | &data_word(0x02080802, 0x00080800, 0x02080000, 0x02000802); | ||
329 | &data_word(0x02000000, 0x00000802, 0x00080002, 0x00000000); | ||
330 | &data_word(0x00080000, 0x02000000, 0x02000802, 0x02080800); | ||
331 | &data_word(0x00000002, 0x02080002, 0x00000800, 0x00080802); | ||
332 | # nibble 1 | ||
333 | &data_word(0x40108010, 0x00000000, 0x00108000, 0x40100000); | ||
334 | &data_word(0x40000010, 0x00008010, 0x40008000, 0x00108000); | ||
335 | &data_word(0x00008000, 0x40100010, 0x00000010, 0x40008000); | ||
336 | &data_word(0x00100010, 0x40108000, 0x40100000, 0x00000010); | ||
337 | &data_word(0x00100000, 0x40008010, 0x40100010, 0x00008000); | ||
338 | &data_word(0x00108010, 0x40000000, 0x00000000, 0x00100010); | ||
339 | &data_word(0x40008010, 0x00108010, 0x40108000, 0x40000010); | ||
340 | &data_word(0x40000000, 0x00100000, 0x00008010, 0x40108010); | ||
341 | &data_word(0x00100010, 0x40108000, 0x40008000, 0x00108010); | ||
342 | &data_word(0x40108010, 0x00100010, 0x40000010, 0x00000000); | ||
343 | &data_word(0x40000000, 0x00008010, 0x00100000, 0x40100010); | ||
344 | &data_word(0x00008000, 0x40000000, 0x00108010, 0x40008010); | ||
345 | &data_word(0x40108000, 0x00008000, 0x00000000, 0x40000010); | ||
346 | &data_word(0x00000010, 0x40108010, 0x00108000, 0x40100000); | ||
347 | &data_word(0x40100010, 0x00100000, 0x00008010, 0x40008000); | ||
348 | &data_word(0x40008010, 0x00000010, 0x40100000, 0x00108000); | ||
349 | # nibble 2 | ||
350 | &data_word(0x04000001, 0x04040100, 0x00000100, 0x04000101); | ||
351 | &data_word(0x00040001, 0x04000000, 0x04000101, 0x00040100); | ||
352 | &data_word(0x04000100, 0x00040000, 0x04040000, 0x00000001); | ||
353 | &data_word(0x04040101, 0x00000101, 0x00000001, 0x04040001); | ||
354 | &data_word(0x00000000, 0x00040001, 0x04040100, 0x00000100); | ||
355 | &data_word(0x00000101, 0x04040101, 0x00040000, 0x04000001); | ||
356 | &data_word(0x04040001, 0x04000100, 0x00040101, 0x04040000); | ||
357 | &data_word(0x00040100, 0x00000000, 0x04000000, 0x00040101); | ||
358 | &data_word(0x04040100, 0x00000100, 0x00000001, 0x00040000); | ||
359 | &data_word(0x00000101, 0x00040001, 0x04040000, 0x04000101); | ||
360 | &data_word(0x00000000, 0x04040100, 0x00040100, 0x04040001); | ||
361 | &data_word(0x00040001, 0x04000000, 0x04040101, 0x00000001); | ||
362 | &data_word(0x00040101, 0x04000001, 0x04000000, 0x04040101); | ||
363 | &data_word(0x00040000, 0x04000100, 0x04000101, 0x00040100); | ||
364 | &data_word(0x04000100, 0x00000000, 0x04040001, 0x00000101); | ||
365 | &data_word(0x04000001, 0x00040101, 0x00000100, 0x04040000); | ||
366 | # nibble 3 | ||
367 | &data_word(0x00401008, 0x10001000, 0x00000008, 0x10401008); | ||
368 | &data_word(0x00000000, 0x10400000, 0x10001008, 0x00400008); | ||
369 | &data_word(0x10401000, 0x10000008, 0x10000000, 0x00001008); | ||
370 | &data_word(0x10000008, 0x00401008, 0x00400000, 0x10000000); | ||
371 | &data_word(0x10400008, 0x00401000, 0x00001000, 0x00000008); | ||
372 | &data_word(0x00401000, 0x10001008, 0x10400000, 0x00001000); | ||
373 | &data_word(0x00001008, 0x00000000, 0x00400008, 0x10401000); | ||
374 | &data_word(0x10001000, 0x10400008, 0x10401008, 0x00400000); | ||
375 | &data_word(0x10400008, 0x00001008, 0x00400000, 0x10000008); | ||
376 | &data_word(0x00401000, 0x10001000, 0x00000008, 0x10400000); | ||
377 | &data_word(0x10001008, 0x00000000, 0x00001000, 0x00400008); | ||
378 | &data_word(0x00000000, 0x10400008, 0x10401000, 0x00001000); | ||
379 | &data_word(0x10000000, 0x10401008, 0x00401008, 0x00400000); | ||
380 | &data_word(0x10401008, 0x00000008, 0x10001000, 0x00401008); | ||
381 | &data_word(0x00400008, 0x00401000, 0x10400000, 0x10001008); | ||
382 | &data_word(0x00001008, 0x10000000, 0x10000008, 0x10401000); | ||
383 | # nibble 4 | ||
384 | &data_word(0x08000000, 0x00010000, 0x00000400, 0x08010420); | ||
385 | &data_word(0x08010020, 0x08000400, 0x00010420, 0x08010000); | ||
386 | &data_word(0x00010000, 0x00000020, 0x08000020, 0x00010400); | ||
387 | &data_word(0x08000420, 0x08010020, 0x08010400, 0x00000000); | ||
388 | &data_word(0x00010400, 0x08000000, 0x00010020, 0x00000420); | ||
389 | &data_word(0x08000400, 0x00010420, 0x00000000, 0x08000020); | ||
390 | &data_word(0x00000020, 0x08000420, 0x08010420, 0x00010020); | ||
391 | &data_word(0x08010000, 0x00000400, 0x00000420, 0x08010400); | ||
392 | &data_word(0x08010400, 0x08000420, 0x00010020, 0x08010000); | ||
393 | &data_word(0x00010000, 0x00000020, 0x08000020, 0x08000400); | ||
394 | &data_word(0x08000000, 0x00010400, 0x08010420, 0x00000000); | ||
395 | &data_word(0x00010420, 0x08000000, 0x00000400, 0x00010020); | ||
396 | &data_word(0x08000420, 0x00000400, 0x00000000, 0x08010420); | ||
397 | &data_word(0x08010020, 0x08010400, 0x00000420, 0x00010000); | ||
398 | &data_word(0x00010400, 0x08010020, 0x08000400, 0x00000420); | ||
399 | &data_word(0x00000020, 0x00010420, 0x08010000, 0x08000020); | ||
400 | # nibble 5 | ||
401 | &data_word(0x80000040, 0x00200040, 0x00000000, 0x80202000); | ||
402 | &data_word(0x00200040, 0x00002000, 0x80002040, 0x00200000); | ||
403 | &data_word(0x00002040, 0x80202040, 0x00202000, 0x80000000); | ||
404 | &data_word(0x80002000, 0x80000040, 0x80200000, 0x00202040); | ||
405 | &data_word(0x00200000, 0x80002040, 0x80200040, 0x00000000); | ||
406 | &data_word(0x00002000, 0x00000040, 0x80202000, 0x80200040); | ||
407 | &data_word(0x80202040, 0x80200000, 0x80000000, 0x00002040); | ||
408 | &data_word(0x00000040, 0x00202000, 0x00202040, 0x80002000); | ||
409 | &data_word(0x00002040, 0x80000000, 0x80002000, 0x00202040); | ||
410 | &data_word(0x80202000, 0x00200040, 0x00000000, 0x80002000); | ||
411 | &data_word(0x80000000, 0x00002000, 0x80200040, 0x00200000); | ||
412 | &data_word(0x00200040, 0x80202040, 0x00202000, 0x00000040); | ||
413 | &data_word(0x80202040, 0x00202000, 0x00200000, 0x80002040); | ||
414 | &data_word(0x80000040, 0x80200000, 0x00202040, 0x00000000); | ||
415 | &data_word(0x00002000, 0x80000040, 0x80002040, 0x80202000); | ||
416 | &data_word(0x80200000, 0x00002040, 0x00000040, 0x80200040); | ||
417 | # nibble 6 | ||
418 | &data_word(0x00004000, 0x00000200, 0x01000200, 0x01000004); | ||
419 | &data_word(0x01004204, 0x00004004, 0x00004200, 0x00000000); | ||
420 | &data_word(0x01000000, 0x01000204, 0x00000204, 0x01004000); | ||
421 | &data_word(0x00000004, 0x01004200, 0x01004000, 0x00000204); | ||
422 | &data_word(0x01000204, 0x00004000, 0x00004004, 0x01004204); | ||
423 | &data_word(0x00000000, 0x01000200, 0x01000004, 0x00004200); | ||
424 | &data_word(0x01004004, 0x00004204, 0x01004200, 0x00000004); | ||
425 | &data_word(0x00004204, 0x01004004, 0x00000200, 0x01000000); | ||
426 | &data_word(0x00004204, 0x01004000, 0x01004004, 0x00000204); | ||
427 | &data_word(0x00004000, 0x00000200, 0x01000000, 0x01004004); | ||
428 | &data_word(0x01000204, 0x00004204, 0x00004200, 0x00000000); | ||
429 | &data_word(0x00000200, 0x01000004, 0x00000004, 0x01000200); | ||
430 | &data_word(0x00000000, 0x01000204, 0x01000200, 0x00004200); | ||
431 | &data_word(0x00000204, 0x00004000, 0x01004204, 0x01000000); | ||
432 | &data_word(0x01004200, 0x00000004, 0x00004004, 0x01004204); | ||
433 | &data_word(0x01000004, 0x01004200, 0x01004000, 0x00004004); | ||
434 | # nibble 7 | ||
435 | &data_word(0x20800080, 0x20820000, 0x00020080, 0x00000000); | ||
436 | &data_word(0x20020000, 0x00800080, 0x20800000, 0x20820080); | ||
437 | &data_word(0x00000080, 0x20000000, 0x00820000, 0x00020080); | ||
438 | &data_word(0x00820080, 0x20020080, 0x20000080, 0x20800000); | ||
439 | &data_word(0x00020000, 0x00820080, 0x00800080, 0x20020000); | ||
440 | &data_word(0x20820080, 0x20000080, 0x00000000, 0x00820000); | ||
441 | &data_word(0x20000000, 0x00800000, 0x20020080, 0x20800080); | ||
442 | &data_word(0x00800000, 0x00020000, 0x20820000, 0x00000080); | ||
443 | &data_word(0x00800000, 0x00020000, 0x20000080, 0x20820080); | ||
444 | &data_word(0x00020080, 0x20000000, 0x00000000, 0x00820000); | ||
445 | &data_word(0x20800080, 0x20020080, 0x20020000, 0x00800080); | ||
446 | &data_word(0x20820000, 0x00000080, 0x00800080, 0x20020000); | ||
447 | &data_word(0x20820080, 0x00800000, 0x20800000, 0x20000080); | ||
448 | &data_word(0x00820000, 0x00020080, 0x20020080, 0x20800000); | ||
449 | &data_word(0x00000080, 0x20820000, 0x00820080, 0x00000000); | ||
450 | &data_word(0x20000000, 0x20800080, 0x00020000, 0x00820080); | ||
451 | &previous(); | ||
452 | } | ||