Subversion Repositories Kolibri OS

Rev

Rev 157 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
157 heavyiron 1
 
2
; Copyright (c) 1999-2006, Tomasz Grysztar.
3
; All rights reserved.
4
5
 
6
7
 
8
 db 9,0Ah,0Dh,1Ah,20h,'+-/*=<>()[]{}:,|&~#`;\'
9
10
 
11
 db 6,'define'
12
 dw define_symbolic_constant-preprocessor
13
 db 7,'include'
14
 dw include_file-preprocessor
15
 db 3,'irp'
16
 dw irp_directive-preprocessor
17
 db 4,'irps'
18
 dw irps_directive-preprocessor
19
 db 5,'macro'
20
 dw define_macro-preprocessor
21
 db 5,'match'
22
 dw match_directive-preprocessor
23
 db 5,'purge'
24
 dw purge_macro-preprocessor
25
 db 4,'rept'
26
 dw rept_directive-preprocessor
27
 db 7,'restore'
28
 dw restore_equ_constant-preprocessor
29
 db 7,'restruc'
30
 dw purge_struc-preprocessor
31
 db 5,'struc'
32
 dw define_struc-preprocessor
33
 db 0
34
35
 
36
 db 6,'common'
37
 dw common_block-preprocessor
38
 db 7,'forward'
39
 dw forward_block-preprocessor
40
 db 5,'local'
41
 dw local_symbols-preprocessor
42
 db 7,'reverse'
43
 dw reverse_block-preprocessor
44
 db 0
45
46
 
47
 db 1,'+',80h
48
 db 1,'-',81h
49
 db 1,'*',90h
50
 db 1,'/',91h
51
 db 3,'mod',0A0h
52
 db 3,'and',0B0h
53
 db 2,'or',0B1h
54
 db 3,'xor',0B2h
55
 db 3,'shl',0C0h
56
 db 3,'shr',0C1h
57
 db 0
58
59
 
60
 db 1,'+',0
61
 db 1,'-',083h
62
 db 3,'not',0D0h
63
 db 3,'plt',0E1h
174 heavyiron 64
 db 3,'rva',0E0h
157 heavyiron 65
 db 0
66
67
 
68
 db 2,'as',86h
69
 db 2,'at',80h
70
 db 7,'defined',88h
71
 db 3,'dup',81h
72
 db 2,'eq',0F0h
73
 db 6,'eqtype',0F7h
74
 db 4,'from',82h
75
 db 2,'in',0F6h
76
 db 2,'on',84h
77
 db 3,'ptr',85h
78
 db 4,'used',89h
79
 db 0
80
81
 
82
 db 2,'bp',25h
83
 db 2,'bx',23h
84
 db 2,'di',27h
85
 db 3,'eax',40h
86
 db 3,'ebp',45h
87
 db 3,'ebx',43h
88
 db 3,'ecx',41h
89
 db 3,'edi',47h
90
 db 3,'edx',42h
91
 db 3,'esi',46h
92
 db 3,'esp',44h
93
 db 3,'r10',8Ah
94
 db 4,'r10d',4Ah
95
 db 3,'r11',8Bh
96
 db 4,'r11d',4Bh
97
 db 3,'r12',8Ch
98
 db 4,'r12d',4Ch
99
 db 3,'r13',8Dh
100
 db 4,'r13d',4Dh
101
 db 3,'r14',8Eh
102
 db 4,'r14d',4Eh
103
 db 3,'r15',8Fh
104
 db 4,'r15d',4Fh
105
 db 2,'r8',88h
106
 db 3,'r8d',48h
107
 db 2,'r9',89h
108
 db 3,'r9d',49h
109
 db 3,'rax',80h
110
 db 3,'rbp',85h
111
 db 3,'rbx',83h
112
 db 3,'rcx',81h
113
 db 3,'rdi',87h
114
 db 3,'rdx',82h
115
 db 3,'rip',0F0h
116
 db 3,'rsi',86h
117
 db 3,'rsp',84h
118
 db 2,'si',26h
119
 db 0
120
121
 
122
 db 4,'byte',1
123
 db 5,'dword',4
124
 db 5,'qword',8
125
 db 4,'word',2
126
 db 0
127
128
 
129
 dw symbols_2-symbols,(symbols_3-symbols_2)/(2+2)
130
 dw symbols_3-symbols,(symbols_4-symbols_3)/(3+2)
131
 dw symbols_4-symbols,(symbols_5-symbols_4)/(4+2)
132
 dw symbols_5-symbols,(symbols_6-symbols_5)/(5+2)
133
 dw symbols_6-symbols,(symbols_7-symbols_6)/(6+2)
134
 dw symbols_7-symbols,(symbols_8-symbols_7)/(7+2)
135
 dw symbols_8-symbols,(symbols_9-symbols_8)/(8+2)
136
 dw symbols_9-symbols,(symbols_10-symbols_9)/(9+2)
137
 dw symbols_10-symbols,(symbols_11-symbols_10)/(10+2)
138
 dw symbols_11-symbols,(symbols_end-symbols_11)/(11+2)
139
140
 
141
 db 'ah',10h,04h
142
 db 'al',10h,10h
143
 db 'ax',10h,20h
144
 db 'bh',10h,07h
145
 db 'bl',10h,13h
146
 db 'bp',10h,25h
147
 db 'bx',10h,23h
148
 db 'ch',10h,05h
149
 db 'cl',10h,11h
150
 db 'cs',10h,62h
151
 db 'cx',10h,21h
152
 db 'dh',10h,06h
153
 db 'di',10h,27h
154
 db 'dl',10h,12h
155
 db 'ds',10h,64h
156
 db 'dx',10h,22h
157
 db 'es',10h,61h
158
 db 'fs',10h,65h
159
 db 'gs',10h,66h
160
 db 'ms',17h,41h
161
 db 'mz',18h,20h
162
 db 'pe',18h,30h
163
 db 'r8',10h,88h
164
 db 'r9',10h,89h
165
 db 'si',10h,26h
166
 db 'sp',10h,24h
167
 db 'ss',10h,63h
168
 db 'st',10h,0A0h
169
symbols_3:
170
 db 'bpl',10h,15h
171
 db 'cr0',10h,50h
172
 db 'cr1',10h,51h
173
 db 'cr2',10h,52h
174
 db 'cr3',10h,53h
175
 db 'cr4',10h,54h
176
 db 'cr5',10h,55h
177
 db 'cr6',10h,56h
178
 db 'cr7',10h,57h
179
 db 'cr8',10h,58h
180
 db 'cr9',10h,59h
181
 db 'dil',10h,17h
182
 db 'dll',1Bh,80h
183
 db 'dr0',10h,70h
184
 db 'dr1',10h,71h
185
 db 'dr2',10h,72h
186
 db 'dr3',10h,73h
187
 db 'dr4',10h,74h
188
 db 'dr5',10h,75h
189
 db 'dr6',10h,76h
190
 db 'dr7',10h,77h
191
 db 'dr8',10h,78h
192
 db 'dr9',10h,79h
193
 db 'eax',10h,40h
194
 db 'ebp',10h,45h
195
 db 'ebx',10h,43h
196
 db 'ecx',10h,41h
197
 db 'edi',10h,47h
198
 db 'edx',10h,42h
199
 db 'elf',18h,50h
200
 db 'esi',10h,46h
201
 db 'esp',10h,44h
202
 db 'far',12h,3
203
 db 'gui',1Bh,2
204
 db 'mm0',10h,0B0h
205
 db 'mm1',10h,0B1h
206
 db 'mm2',10h,0B2h
207
 db 'mm3',10h,0B3h
208
 db 'mm4',10h,0B4h
209
 db 'mm5',10h,0B5h
210
 db 'mm6',10h,0B6h
211
 db 'mm7',10h,0B7h
212
 db 'r10',10h,8Ah
213
 db 'r11',10h,8Bh
214
 db 'r12',10h,8Ch
215
 db 'r13',10h,8Dh
216
 db 'r14',10h,8Eh
217
 db 'r15',10h,8Fh
218
 db 'r8b',10h,18h
219
 db 'r8d',10h,48h
220
 db 'r8l',10h,18h
221
 db 'r8w',10h,28h
222
 db 'r9b',10h,19h
223
 db 'r9d',10h,49h
224
 db 'r9l',10h,19h
225
 db 'r9w',10h,29h
226
 db 'rax',10h,80h
227
 db 'rbp',10h,85h
228
 db 'rbx',10h,83h
229
 db 'rcx',10h,81h
230
 db 'rdi',10h,87h
231
 db 'rdx',10h,82h
232
 db 'rsi',10h,86h
233
 db 'rsp',10h,84h
234
 db 'sil',10h,16h
235
 db 'spl',10h,14h
236
 db 'st0',10h,0A0h
237
 db 'st1',10h,0A1h
238
 db 'st2',10h,0A2h
239
 db 'st3',10h,0A3h
240
 db 'st4',10h,0A4h
241
 db 'st5',10h,0A5h
242
 db 'st6',10h,0A6h
243
 db 'st7',10h,0A7h
244
 db 'tr0',10h,90h
245
 db 'tr1',10h,91h
246
 db 'tr2',10h,92h
247
 db 'tr3',10h,93h
248
 db 'tr4',10h,94h
249
 db 'tr5',10h,95h
250
 db 'tr6',10h,96h
251
 db 'tr7',10h,97h
252
 db 'wdm',1Bh,81h
253
symbols_4:
254
 db 'byte',11h,1
255
 db 'code',19h,5
256
 db 'coff',18h,40h
257
 db 'cr10',10h,5Ah
258
 db 'cr11',10h,5Bh
259
 db 'cr12',10h,5Ch
260
 db 'cr13',10h,5Dh
261
 db 'cr14',10h,5Eh
262
 db 'cr15',10h,5Fh
263
 db 'data',19h,6
264
 db 'dr10',10h,7Ah
265
 db 'dr11',10h,7Bh
266
 db 'dr12',10h,7Ch
267
 db 'dr13',10h,7Dh
268
 db 'dr14',10h,7Eh
269
 db 'dr15',10h,7Fh
270
 db 'ms64',17h,49h
271
 db 'near',12h,2
272
 db 'pe64',18h,38h
273
 db 'r10b',10h,1Ah
274
 db 'r10d',10h,4Ah
275
 db 'r10l',10h,1Ah
276
 db 'r10w',10h,2Ah
277
 db 'r11b',10h,1Bh
278
 db 'r11d',10h,4Bh
279
 db 'r11l',10h,1Bh
280
 db 'r11w',10h,2Bh
281
 db 'r12b',10h,1Ch
282
 db 'r12d',10h,4Ch
283
 db 'r12l',10h,1Ch
284
 db 'r12w',10h,2Ch
285
 db 'r13b',10h,1Dh
286
 db 'r13d',10h,4Dh
287
 db 'r13l',10h,1Dh
288
 db 'r13w',10h,2Dh
289
 db 'r14b',10h,1Eh
290
 db 'r14d',10h,4Eh
291
 db 'r14l',10h,1Eh
292
 db 'r14w',10h,2Eh
293
 db 'r15b',10h,1Fh
294
 db 'r15d',10h,4Fh
295
 db 'r15l',10h,1Fh
296
 db 'r15w',10h,2Fh
297
 db 'word',11h,2
298
 db 'xmm0',10h,0C0h
299
 db 'xmm1',10h,0C1h
300
 db 'xmm2',10h,0C2h
301
 db 'xmm3',10h,0C3h
302
 db 'xmm4',10h,0C4h
303
 db 'xmm5',10h,0C5h
304
 db 'xmm6',10h,0C6h
305
 db 'xmm7',10h,0C7h
306
 db 'xmm8',10h,0C8h
307
 db 'xmm9',10h,0C9h
308
symbols_5:
309
 db 'align',1Ch,0
310
 db 'dword',11h,4
311
 db 'elf64',18h,58h
312
 db 'fword',11h,6
313
 db 'pword',11h,6
314
 db 'qword',11h,8
315
 db 'short',12h,1
316
 db 'tbyte',11h,0Ah
317
 db 'tword',11h,0Ah
318
 db 'use16',13h,16
319
 db 'use32',13h,32
320
 db 'use64',13h,64
321
 db 'xmm10',10h,0CAh
322
 db 'xmm11',10h,0CBh
323
 db 'xmm12',10h,0CCh
324
 db 'xmm13',10h,0CDh
325
 db 'xmm14',10h,0CEh
326
 db 'xmm15',10h,0CFh
327
symbols_6:
328
 db 'binary',18h,10h
329
 db 'dqword',11h,16
330
 db 'export',1Ah,0
331
 db 'fixups',1Ah,5
332
 db 'import',1Ah,1
333
 db 'native',1Bh,1
334
symbols_7:
335
 db 'console',1Bh,3
336
symbols_8:
337
 db 'linkinfo',19h,9
338
 db 'readable',19h,30
339
 db 'resource',1Ah,2
340
 db 'writable',19h,31
341
symbols_9:
342
 db 'shareable',19h,28
343
 db 'writeable',19h,31
344
symbols_10:
345
 db 'executable',19h,29
346
 db 'linkremove',19h,11
347
symbols_11:
348
 db 'discardable',19h,25
349
 db 'notpageable',19h,27
350
symbols_end:
351
352
 
353
 dw instructions_2-instructions,(instructions_3-instructions_2)/(2+3)
354
 dw instructions_3-instructions,(instructions_4-instructions_3)/(3+3)
355
 dw instructions_4-instructions,(instructions_5-instructions_4)/(4+3)
356
 dw instructions_5-instructions,(instructions_6-instructions_5)/(5+3)
357
 dw instructions_6-instructions,(instructions_7-instructions_6)/(6+3)
358
 dw instructions_7-instructions,(instructions_8-instructions_7)/(7+3)
359
 dw instructions_8-instructions,(instructions_9-instructions_8)/(8+3)
360
 dw instructions_9-instructions,(instructions_10-instructions_9)/(9+3)
361
 dw instructions_10-instructions,(instructions_11-instructions_10)/(10+3)
362
 dw instructions_11-instructions,(instructions_end-instructions_11)/(11+3)
363
364
 
365
 db 'bt',4
366
 dw bt_instruction-assembler
367
 db 'if',0
368
 dw if_directive-assembler
369
 db 'in',0
370
 dw in_instruction-assembler
371
 db 'ja',77h
372
 dw conditional_jump-assembler
373
 db 'jb',72h
374
 dw conditional_jump-assembler
375
 db 'jc',72h
376
 dw conditional_jump-assembler
377
 db 'je',74h
378
 dw conditional_jump-assembler
379
 db 'jg',7Fh
380
 dw conditional_jump-assembler
381
 db 'jl',7Ch
382
 dw conditional_jump-assembler
383
 db 'jo',70h
384
 dw conditional_jump-assembler
385
 db 'jp',7Ah
386
 dw conditional_jump-assembler
387
 db 'js',78h
388
 dw conditional_jump-assembler
389
 db 'jz',74h
390
 dw conditional_jump-assembler
391
 db 'or',08h
392
 dw basic_instruction-assembler
393
instructions_3:
394
 db 'aaa',37h
395
 dw simple_instruction_except64-assembler
396
 db 'aad',0D5h
397
 dw aa_instruction-assembler
398
 db 'aam',0D4h
399
 dw aa_instruction-assembler
400
 db 'aas',3Fh
401
 dw simple_instruction_except64-assembler
402
 db 'adc',10h
403
 dw basic_instruction-assembler
404
 db 'add',00h
405
 dw basic_instruction-assembler
406
 db 'and',20h
407
 dw basic_instruction-assembler
408
 db 'bsf',0BCh
409
 dw bs_instruction-assembler
410
 db 'bsr',0BDh
411
 dw bs_instruction-assembler
412
 db 'btc',7
413
 dw bt_instruction-assembler
414
 db 'btr',6
415
 dw bt_instruction-assembler
416
 db 'bts',5
417
 dw bt_instruction-assembler
418
 db 'cbw',98h
419
 dw simple_instruction_16bit-assembler
420
 db 'cdq',99h
421
 dw simple_instruction_32bit-assembler
422
 db 'clc',0F8h
423
 dw simple_instruction-assembler
424
 db 'cld',0FCh
425
 dw simple_instruction-assembler
426
 db 'cli',0FAh
427
 dw simple_instruction-assembler
428
 db 'cmc',0F5h
429
 dw simple_instruction-assembler
430
 db 'cmp',38h
431
 dw basic_instruction-assembler
432
 db 'cqo',99h
433
 dw simple_instruction_64bit-assembler
434
 db 'cwd',99h
435
 dw simple_instruction_16bit-assembler
436
 db 'daa',27h
437
 dw simple_instruction_except64-assembler
438
 db 'das',2Fh
439
 dw simple_instruction_except64-assembler
440
 db 'dec',1
441
 dw inc_instruction-assembler
442
 db 'div',6
443
 dw single_operand_instruction-assembler
444
 db 'end',0
445
 dw end_directive-assembler
446
 db 'fld',0
447
 dw fld_instruction-assembler
448
 db 'fst',2
449
 dw fld_instruction-assembler
450
 db 'hlt',0F4h
451
 dw simple_instruction-assembler
452
 db 'inc',0
453
 dw inc_instruction-assembler
454
 db 'ins',6Ch
455
 dw ins_instruction-assembler
456
 db 'int',0CDh
457
 dw int_instruction-assembler
458
 db 'jae',73h
459
 dw conditional_jump-assembler
460
 db 'jbe',76h
461
 dw conditional_jump-assembler
462
 db 'jge',7Dh
463
 dw conditional_jump-assembler
464
 db 'jle',7Eh
465
 dw conditional_jump-assembler
466
 db 'jmp',0
467
 dw jmp_instruction-assembler
468
 db 'jna',76h
469
 dw conditional_jump-assembler
470
 db 'jnb',73h
471
 dw conditional_jump-assembler
472
 db 'jnc',73h
473
 dw conditional_jump-assembler
474
 db 'jne',75h
475
 dw conditional_jump-assembler
476
 db 'jng',7Eh
477
 dw conditional_jump-assembler
478
 db 'jnl',7Dh
479
 dw conditional_jump-assembler
480
 db 'jno',71h
481
 dw conditional_jump-assembler
482
 db 'jnp',7Bh
483
 dw conditional_jump-assembler
484
 db 'jns',79h
485
 dw conditional_jump-assembler
486
 db 'jnz',75h
487
 dw conditional_jump-assembler
488
 db 'jpe',7Ah
489
 dw conditional_jump-assembler
490
 db 'jpo',7Bh
491
 dw conditional_jump-assembler
492
 db 'lar',2
493
 dw lar_instruction-assembler
494
 db 'lds',3
495
 dw ls_instruction-assembler
496
 db 'lea',0
497
 dw lea_instruction-assembler
498
 db 'les',0
499
 dw ls_instruction-assembler
500
 db 'lfs',4
501
 dw ls_instruction-assembler
502
 db 'lgs',5
503
 dw ls_instruction-assembler
504
 db 'lsl',3
505
 dw lar_instruction-assembler
506
 db 'lss',2
507
 dw ls_instruction-assembler
508
 db 'ltr',3
509
 dw pm_word_instruction-assembler
510
 db 'mov',0
511
 dw mov_instruction-assembler
512
 db 'mul',4
513
 dw single_operand_instruction-assembler
514
 db 'neg',3
515
 dw single_operand_instruction-assembler
516
 ;db 'nop',90h
174 heavyiron 517
 ;dw nop_instruction-assembler
518
 db 'not',2
157 heavyiron 519
 dw single_operand_instruction-assembler
520
 db 'org',0
521
 dw org_directive-assembler
522
 db 'out',0
523
 dw out_instruction-assembler
524
 db 'pop',0
525
 dw pop_instruction-assembler
526
 db 'por',0EBh
527
 dw basic_mmx_instruction-assembler
174 heavyiron 528
 db 'rcl',2
157 heavyiron 529
 dw sh_instruction-assembler
530
 db 'rcr',3
531
 dw sh_instruction-assembler
532
 db 'rep',0F3h
533
 dw prefix_instruction-assembler
534
 db 'ret',0C2h
535
 dw ret_instruction-assembler
536
 db 'rol',0
537
 dw sh_instruction-assembler
538
 db 'ror',1
539
 dw sh_instruction-assembler
540
 db 'rsm',0AAh
541
 dw simple_extended_instruction-assembler
542
 db 'sal',4
543
 dw sh_instruction-assembler
544
 db 'sar',7
545
 dw sh_instruction-assembler
546
 db 'sbb',18h
547
 dw basic_instruction-assembler
548
 db 'shl',4
549
 dw sh_instruction-assembler
550
 db 'shr',5
551
 dw sh_instruction-assembler
552
 db 'stc',0F9h
553
 dw simple_instruction-assembler
554
 db 'std',0FDh
555
 dw simple_instruction-assembler
556
 db 'sti',0FBh
557
 dw simple_instruction-assembler
558
 db 'str',1
559
 dw pm_store_word_instruction-assembler
560
 db 'sub',28h
561
 dw basic_instruction-assembler
562
 db 'ud2',0Bh
563
 dw simple_extended_instruction-assembler
564
 db 'xor',30h
565
 dw basic_instruction-assembler
566
instructions_4:
567
 db 'arpl',0
568
 dw arpl_instruction-assembler
569
 db 'call',0
570
 dw call_instruction-assembler
571
 db 'cdqe',98h
572
 dw simple_instruction_64bit-assembler
573
 db 'clgi',0DDh
574
 dw simple_vmx_instruction-assembler
575
 db 'clts',6
576
 dw simple_extended_instruction-assembler
577
 db 'cmps',0A6h
578
 dw cmps_instruction-assembler
579
 db 'cwde',98h
580
 dw simple_instruction_32bit-assembler
581
 db 'data',0
582
 dw data_directive-assembler
583
 db 'else',0
584
 dw else_directive-assembler
585
 db 'emms',77h
586
 dw simple_extended_instruction-assembler
587
 db 'fabs',100001b
588
 dw simple_fpu_instruction-assembler
589
 db 'fadd',0
590
 dw basic_fpu_instruction-assembler
591
 db 'fbld',4
592
 dw fbld_instruction-assembler
593
 db 'fchs',100000b
594
 dw simple_fpu_instruction-assembler
595
 db 'fcom',2
596
 dw basic_fpu_instruction-assembler
597
 db 'fcos',111111b
598
 dw simple_fpu_instruction-assembler
599
 db 'fdiv',6
600
 dw basic_fpu_instruction-assembler
601
 db 'feni',0E0h
602
 dw finit_instruction-assembler
603
 db 'fild',0
604
 dw fild_instruction-assembler
605
 db 'fist',2
606
 dw fild_instruction-assembler
607
 db 'fld1',101000b
608
 dw simple_fpu_instruction-assembler
609
 db 'fldz',101110b
610
 dw simple_fpu_instruction-assembler
611
 db 'fmul',1
612
 dw basic_fpu_instruction-assembler
613
 db 'fnop',010000b
614
 dw simple_fpu_instruction-assembler
615
 db 'fsin',111110b
616
 dw simple_fpu_instruction-assembler
617
 db 'fstp',3
618
 dw fld_instruction-assembler
619
 db 'fsub',4
620
 dw basic_fpu_instruction-assembler
621
 db 'ftst',100100b
622
 dw simple_fpu_instruction-assembler
623
 db 'fxam',100101b
624
 dw simple_fpu_instruction-assembler
625
 db 'fxch',0
626
 dw fxch_instruction-assembler
627
 db 'heap',0
628
 dw heap_directive-assembler
629
 db 'idiv',7
630
 dw single_operand_instruction-assembler
631
 db 'imul',0
632
 dw imul_instruction-assembler
633
 db 'insb',6Ch
634
 dw simple_instruction-assembler
635
 db 'insd',6Dh
636
 dw simple_instruction_32bit-assembler
637
 db 'insw',6Dh
638
 dw simple_instruction_16bit-assembler
639
 db 'int1',0F1h
640
 dw simple_instruction-assembler
641
 db 'int3',0CCh
642
 dw simple_instruction-assembler
643
 db 'into',0CEh
644
 dw simple_instruction_except64-assembler
645
 db 'invd',8
646
 dw simple_extended_instruction-assembler
647
 db 'iret',0CFh
648
 dw iret_instruction-assembler
649
 db 'jcxz',0E3h
650
 dw loop_instruction_16bit-assembler
651
 db 'jnae',72h
652
 dw conditional_jump-assembler
653
 db 'jnbe',77h
654
 dw conditional_jump-assembler
655
 db 'jnge',7Ch
656
 dw conditional_jump-assembler
657
 db 'jnle',7Fh
658
 dw conditional_jump-assembler
659
 db 'lahf',9Fh
660
 dw simple_instruction-assembler
661
 db 'lgdt',2
662
 dw lgdt_instruction-assembler
663
 db 'lidt',3
664
 dw lgdt_instruction-assembler
665
 db 'lldt',2
666
 dw pm_word_instruction-assembler
667
 db 'lmsw',16h
668
 dw pm_word_instruction-assembler
669
 db 'load',0
670
 dw load_directive-assembler
671
 db 'lock',0F0h
672
 dw prefix_instruction-assembler
673
 db 'lods',0ACh
674
 dw lods_instruction-assembler
675
 db 'loop',0E2h
676
 dw loop_instruction-assembler
677
 db 'movd',0
678
 dw movd_instruction-assembler
679
 db 'movq',0
680
 dw movq_instruction-assembler
681
 db 'movs',0A4h
682
 dw movs_instruction-assembler
683
 db 'orpd',56h
684
 dw sse_pd_instruction-assembler
685
 db 'orps',56h
686
 dw sse_ps_instruction-assembler
687
 db 'outs',6Eh
688
 dw outs_instruction-assembler
689
 db 'pand',0DBh
690
 dw basic_mmx_instruction-assembler
174 heavyiron 691
 db 'popa',61h
157 heavyiron 692
 dw simple_instruction_except64-assembler
693
 db 'popd',4
694
 dw pop_instruction-assembler
695
 db 'popf',9Dh
696
 dw simple_instruction-assembler
697
 db 'popq',8
698
 dw pop_instruction-assembler
699
 db 'popw',2
700
 dw pop_instruction-assembler
701
 db 'push',0
702
 dw push_instruction-assembler
703
 db 'pxor',0EFh
704
 dw basic_mmx_instruction-assembler
174 heavyiron 705
 db 'repe',0F3h
157 heavyiron 706
 dw prefix_instruction-assembler
707
 db 'repz',0F3h
708
 dw prefix_instruction-assembler
709
 db 'retd',0C2h
710
 dw ret_instruction_32bit_except64-assembler
711
 db 'retf',0CAh
712
 dw retf_instruction-assembler
713
 db 'retn',0C2h
714
 dw ret_instruction-assembler
715
 db 'retq',0C2h
716
 dw ret_instruction_only64-assembler
717
 db 'retw',0C2h
718
 dw ret_instruction_16bit-assembler
719
 db 'sahf',9Eh
720
 dw simple_instruction-assembler
721
 db 'salc',0D6h
722
 dw simple_instruction_except64-assembler
723
 db 'scas',0AEh
724
 dw stos_instruction-assembler
725
 db 'seta',97h
726
 dw set_instruction-assembler
727
 db 'setb',92h
728
 dw set_instruction-assembler
729
 db 'setc',92h
730
 dw set_instruction-assembler
731
 db 'sete',94h
732
 dw set_instruction-assembler
733
 db 'setg',9Fh
734
 dw set_instruction-assembler
735
 db 'setl',9Ch
736
 dw set_instruction-assembler
737
 db 'seto',90h
738
 dw set_instruction-assembler
739
 db 'setp',9Ah
740
 dw set_instruction-assembler
741
 db 'sets',98h
742
 dw set_instruction-assembler
743
 db 'setz',94h
744
 dw set_instruction-assembler
745
 db 'sgdt',0
746
 dw lgdt_instruction-assembler
747
 db 'shld',0A4h
748
 dw shd_instruction-assembler
749
 db 'shrd',0ACh
750
 dw shd_instruction-assembler
751
 db 'sidt',1
752
 dw lgdt_instruction-assembler
753
 db 'sldt',0
754
 dw pm_store_word_instruction-assembler
755
 db 'smsw',14h
756
 dw pm_store_word_instruction-assembler
757
 db 'stgi',0DCh
758
 dw simple_vmx_instruction-assembler
759
 db 'stos',0AAh
760
 dw stos_instruction-assembler
761
 db 'test',0
762
 dw test_instruction-assembler
763
 db 'verr',4
764
 dw pm_word_instruction-assembler
765
 db 'verw',5
766
 dw pm_word_instruction-assembler
767
 db 'wait',9Bh
768
 dw simple_instruction-assembler
769
 db 'xadd',0C0h
770
 dw basic_486_instruction-assembler
771
 db 'xchg',0
772
 dw xchg_instruction-assembler
773
 db 'xlat',0D7h
774
 dw xlat_instruction-assembler
775
instructions_5:
776
 db 'addpd',58h
777
 dw sse_pd_instruction-assembler
778
 db 'addps',58h
779
 dw sse_ps_instruction-assembler
780
 db 'addsd',58h
781
 dw sse_sd_instruction-assembler
782
 db 'addss',58h
783
 dw sse_ss_instruction-assembler
784
 db 'align',0
785
 dw align_directive-assembler
786
 db 'andpd',54h
787
 dw sse_pd_instruction-assembler
788
 db 'andps',54h
789
 dw sse_ps_instruction-assembler
790
 db 'bound',0
791
 dw bound_instruction-assembler
792
 db 'break',0
793
 dw break_directive-assembler
794
 db 'bswap',0
795
 dw bswap_instruction-assembler
796
 db 'cmova',47h
797
 dw cmov_instruction-assembler
798
 db 'cmovb',42h
799
 dw cmov_instruction-assembler
800
 db 'cmovc',42h
801
 dw cmov_instruction-assembler
802
 db 'cmove',44h
803
 dw cmov_instruction-assembler
804
 db 'cmovg',4Fh
805
 dw cmov_instruction-assembler
806
 db 'cmovl',4Ch
807
 dw cmov_instruction-assembler
808
 db 'cmovo',40h
809
 dw cmov_instruction-assembler
810
 db 'cmovp',4Ah
811
 dw cmov_instruction-assembler
812
 db 'cmovs',48h
813
 dw cmov_instruction-assembler
814
 db 'cmovz',44h
815
 dw cmov_instruction-assembler
816
 db 'cmppd',0
817
 dw cmppd_instruction-assembler
818
 db 'cmpps',0
819
 dw cmpps_instruction-assembler
820
 db 'cmpsb',0A6h
821
 dw simple_instruction-assembler
822
 db 'cmpsd',0
823
 dw cmpsd_instruction-assembler
824
 db 'cmpsq',0A7h
825
 dw simple_instruction_64bit-assembler
826
 db 'cmpss',0
827
 dw cmpss_instruction-assembler
828
 db 'cmpsw',0A7h
829
 dw simple_instruction_16bit-assembler
830
 db 'cpuid',0A2h
831
 dw simple_extended_instruction-assembler
832
 db 'divpd',5Eh
833
 dw sse_pd_instruction-assembler
834
 db 'divps',5Eh
835
 dw sse_ps_instruction-assembler
836
 db 'divsd',5Eh
837
 dw sse_sd_instruction-assembler
838
 db 'divss',5Eh
839
 dw sse_ss_instruction-assembler
840
 db 'enter',0
841
 dw enter_instruction-assembler
842
 db 'entry',0
843
 dw entry_directive-assembler
844
 db 'extrn',0
845
 dw extrn_directive-assembler
846
 db 'f2xm1',110000b
847
 dw simple_fpu_instruction-assembler
848
 db 'faddp',0
849
 dw faddp_instruction-assembler
850
 db 'fbstp',6
851
 dw fbld_instruction-assembler
852
 db 'fclex',0E2h
853
 dw finit_instruction-assembler
854
 db 'fcomi',0F0h
855
 dw fcomi_instruction-assembler
856
 db 'fcomp',3
857
 dw basic_fpu_instruction-assembler
858
 db 'fdisi',0E1h
859
 dw finit_instruction-assembler
860
 db 'fdivp',7
861
 dw faddp_instruction-assembler
862
 db 'fdivr',7
863
 dw basic_fpu_instruction-assembler
864
 db 'femms',0Eh
865
 dw simple_extended_instruction-assembler
866
 db 'ffree',0
867
 dw ffree_instruction-assembler
868
 db 'fiadd',0
869
 dw fi_instruction-assembler
870
 db 'ficom',2
871
 dw fi_instruction-assembler
872
 db 'fidiv',6
873
 dw fi_instruction-assembler
874
 db 'fimul',1
875
 dw fi_instruction-assembler
876
 db 'finit',0E3h
877
 dw finit_instruction-assembler
878
 db 'fistp',3
879
 dw fild_instruction-assembler
880
 db 'fisub',4
881
 dw fi_instruction-assembler
882
 db 'fldcw',5
883
 dw fldcw_instruction-assembler
884
 db 'fldpi',101011b
885
 dw simple_fpu_instruction-assembler
886
 db 'fmulp',1
887
 dw faddp_instruction-assembler
888
 db 'fneni',0E0h
889
 dw fninit_instruction-assembler
890
 db 'fprem',111000b
891
 dw simple_fpu_instruction-assembler
892
 db 'fptan',110010b
893
 dw simple_fpu_instruction-assembler
894
 db 'fsave',6
895
 dw fsave_instruction-assembler
896
 db 'fsqrt',111010b
897
 dw simple_fpu_instruction-assembler
898
 db 'fstcw',7
899
 dw fstcw_instruction-assembler
900
 db 'fstsw',0
901
 dw fstsw_instruction-assembler
902
 db 'fsubp',5
903
 dw faddp_instruction-assembler
904
 db 'fsubr',5
905
 dw basic_fpu_instruction-assembler
906
 db 'fucom',4
907
 dw ffree_instruction-assembler
908
 db 'fwait',9Bh
909
 dw simple_instruction-assembler
910
 db 'fyl2x',110001b
911
 dw simple_fpu_instruction-assembler
912
 db 'icebp',0F1h
913
 dw simple_instruction-assembler
914
 db 'iretd',0CFh
915
 dw simple_instruction_32bit-assembler
916
 db 'iretq',0CFh
917
 dw simple_instruction_64bit-assembler
918
 db 'iretw',0CFh
919
 dw simple_instruction_16bit-assembler
920
 db 'jecxz',0E3h
921
 dw loop_instruction_32bit-assembler
922
 db 'jrcxz',0E3h
923
 dw loop_instruction_64bit-assembler
924
 db 'label',0
925
 dw label_directive-assembler
926
 db 'lddqu',0
927
 dw lddqu_instruction-assembler
928
 db 'leave',0C9h
929
 dw simple_instruction-assembler
930
 db 'lodsb',0ACh
931
 dw simple_instruction-assembler
932
 db 'lodsd',0ADh
933
 dw simple_instruction_32bit-assembler
934
 db 'lodsq',0ADh
935
 dw simple_instruction_64bit-assembler
936
 db 'lodsw',0ADh
937
 dw simple_instruction_16bit-assembler
938
 db 'loopd',0E2h
939
 dw loop_instruction_32bit-assembler
940
 db 'loope',0E1h
941
 dw loop_instruction-assembler
942
 db 'loopq',0E2h
943
 dw loop_instruction_64bit-assembler
944
 db 'loopw',0E2h
945
 dw loop_instruction_16bit-assembler
946
 db 'loopz',0E1h
947
 dw loop_instruction-assembler
948
 db 'maxpd',5Fh
949
 dw sse_pd_instruction-assembler
950
 db 'maxps',5Fh
951
 dw sse_ps_instruction-assembler
952
 db 'maxsd',5Fh
953
 dw sse_sd_instruction-assembler
954
 db 'maxss',5Fh
955
 dw sse_ss_instruction-assembler
956
 db 'minpd',5Dh
957
 dw sse_pd_instruction-assembler
958
 db 'minps',5Dh
959
 dw sse_ps_instruction-assembler
960
 db 'minsd',5Dh
961
 dw sse_sd_instruction-assembler
962
 db 'minss',5Dh
963
 dw sse_ss_instruction-assembler
964
 db 'movsb',0A4h
965
 dw simple_instruction-assembler
966
 db 'movsd',0
967
 dw movsd_instruction-assembler
968
 db 'movsq',0A5h
969
 dw simple_instruction_64bit-assembler
970
 db 'movss',0
971
 dw movss_instruction-assembler
972
 db 'movsw',0A5h
973
 dw simple_instruction_16bit-assembler
974
 db 'movsx',0BEh
975
 dw movx_instruction-assembler
976
 db 'movzx',0B6h
977
 dw movx_instruction-assembler
978
 db 'mulpd',59h
979
 dw sse_pd_instruction-assembler
980
 db 'mulps',59h
981
 dw sse_ps_instruction-assembler
982
 db 'mulsd',59h
983
 dw sse_sd_instruction-assembler
984
 db 'mulss',59h
985
 dw sse_ss_instruction-assembler
986
 db 'mwait',0C9h
987
 dw monitor_instruction-assembler
988
 db 'outsb',6Eh
989
 dw simple_instruction-assembler
990
 db 'outsd',6Fh
991
 dw simple_instruction_32bit-assembler
992
 db 'outsw',6Fh
993
 dw simple_instruction_16bit-assembler
994
 db 'pabsb',1Ch
174 heavyiron 995
 dw ssse3_instruction-assembler
996
 db 'pabsd',1Eh
997
 dw ssse3_instruction-assembler
998
 db 'pabsw',1Dh
999
 dw ssse3_instruction-assembler
1000
 db 'paddb',0FCh
157 heavyiron 1001
 dw basic_mmx_instruction-assembler
174 heavyiron 1002
 db 'paddd',0FEh
157 heavyiron 1003
 dw basic_mmx_instruction-assembler
174 heavyiron 1004
 db 'paddq',0D4h
157 heavyiron 1005
 dw basic_mmx_instruction-assembler
174 heavyiron 1006
 db 'paddw',0FDh
157 heavyiron 1007
 dw basic_mmx_instruction-assembler
174 heavyiron 1008
 db 'pandn',0DFh
157 heavyiron 1009
 dw basic_mmx_instruction-assembler
174 heavyiron 1010
 db 'pause',0
157 heavyiron 1011
 dw pause_instruction-assembler
1012
 db 'pavgb',0E0h
1013
 dw basic_mmx_instruction-assembler
174 heavyiron 1014
 db 'pavgw',0E3h
157 heavyiron 1015
 dw basic_mmx_instruction-assembler
174 heavyiron 1016
 db 'pf2id',1Dh
157 heavyiron 1017
 dw amd3dnow_instruction-assembler
1018
 db 'pf2iw',1Ch
1019
 dw amd3dnow_instruction-assembler
1020
 db 'pfacc',0AEh
1021
 dw amd3dnow_instruction-assembler
1022
 db 'pfadd',9Eh
1023
 dw amd3dnow_instruction-assembler
1024
 db 'pfmax',0A4h
1025
 dw amd3dnow_instruction-assembler
1026
 db 'pfmin',94h
1027
 dw amd3dnow_instruction-assembler
1028
 db 'pfmul',0B4h
1029
 dw amd3dnow_instruction-assembler
1030
 db 'pfrcp',96h
1031
 dw amd3dnow_instruction-assembler
1032
 db 'pfsub',9Ah
1033
 dw amd3dnow_instruction-assembler
1034
 db 'pi2fd',0Dh
1035
 dw amd3dnow_instruction-assembler
1036
 db 'pi2fw',0Ch
1037
 dw amd3dnow_instruction-assembler
1038
 db 'popad',61h
1039
 dw simple_instruction_32bit_except64-assembler
1040
 db 'popaw',61h
1041
 dw simple_instruction_16bit_except64-assembler
1042
 db 'popfd',9Dh
1043
 dw simple_instruction_32bit_except64-assembler
1044
 db 'popfq',9Dh
1045
 dw simple_instruction_only64-assembler
1046
 db 'popfw',9Dh
1047
 dw simple_instruction_16bit-assembler
1048
 db 'pslld',0F2h
1049
 dw mmx_ps_instruction-assembler
1050
 db 'psllq',0F3h
1051
 dw mmx_ps_instruction-assembler
1052
 db 'psllw',0F1h
1053
 dw mmx_ps_instruction-assembler
1054
 db 'psrad',0E2h
1055
 dw mmx_ps_instruction-assembler
1056
 db 'psraw',0E1h
1057
 dw mmx_ps_instruction-assembler
1058
 db 'psrld',0D2h
1059
 dw mmx_ps_instruction-assembler
1060
 db 'psrlq',0D3h
1061
 dw mmx_ps_instruction-assembler
1062
 db 'psrlw',0D1h
1063
 dw mmx_ps_instruction-assembler
1064
 db 'psubb',0F8h
1065
 dw basic_mmx_instruction-assembler
174 heavyiron 1066
 db 'psubd',0FAh
157 heavyiron 1067
 dw basic_mmx_instruction-assembler
174 heavyiron 1068
 db 'psubq',0FBh
157 heavyiron 1069
 dw basic_mmx_instruction-assembler
174 heavyiron 1070
 db 'psubw',0F9h
157 heavyiron 1071
 dw basic_mmx_instruction-assembler
174 heavyiron 1072
 db 'pusha',60h
157 heavyiron 1073
 dw simple_instruction_except64-assembler
1074
 db 'pushd',4
1075
 dw push_instruction-assembler
1076
 db 'pushf',9Ch
1077
 dw simple_instruction-assembler
1078
 db 'pushq',8
1079
 dw push_instruction-assembler
1080
 db 'pushw',2
1081
 dw push_instruction-assembler
1082
 db 'rcpps',53h
1083
 dw sse_ps_instruction-assembler
1084
 db 'rcpss',53h
1085
 dw sse_ss_instruction-assembler
1086
 db 'rdmsr',32h
1087
 dw simple_extended_instruction-assembler
1088
 db 'rdpmc',33h
1089
 dw simple_extended_instruction-assembler
1090
 db 'rdtsc',31h
1091
 dw simple_extended_instruction-assembler
1092
 db 'repne',0F2h
1093
 dw prefix_instruction-assembler
1094
 db 'repnz',0F2h
1095
 dw prefix_instruction-assembler
1096
 db 'retfd',0CAh
1097
 dw ret_instruction_32bit-assembler
1098
 db 'retfq',0CAh
1099
 dw ret_instruction_64bit-assembler
1100
 db 'retfw',0CAh
1101
 dw ret_instruction_16bit-assembler
1102
 db 'retnd',0C2h
1103
 dw ret_instruction_32bit_except64-assembler
1104
 db 'retnq',0C2h
1105
 dw ret_instruction_only64-assembler
1106
 db 'retnw',0C2h
1107
 dw ret_instruction_16bit-assembler
1108
 db 'scasb',0AEh
1109
 dw simple_instruction-assembler
1110
 db 'scasd',0AFh
1111
 dw simple_instruction_32bit-assembler
1112
 db 'scasq',0AFh
1113
 dw simple_instruction_64bit-assembler
1114
 db 'scasw',0AFh
1115
 dw simple_instruction_16bit-assembler
1116
 db 'setae',93h
1117
 dw set_instruction-assembler
1118
 db 'setbe',96h
1119
 dw set_instruction-assembler
1120
 db 'setge',9Dh
1121
 dw set_instruction-assembler
1122
 db 'setle',9Eh
1123
 dw set_instruction-assembler
1124
 db 'setna',96h
1125
 dw set_instruction-assembler
1126
 db 'setnb',93h
1127
 dw set_instruction-assembler
1128
 db 'setnc',93h
1129
 dw set_instruction-assembler
1130
 db 'setne',95h
1131
 dw set_instruction-assembler
1132
 db 'setng',9Eh
1133
 dw set_instruction-assembler
1134
 db 'setnl',9Dh
1135
 dw set_instruction-assembler
1136
 db 'setno',91h
1137
 dw set_instruction-assembler
1138
 db 'setnp',9Bh
1139
 dw set_instruction-assembler
1140
 db 'setns',99h
1141
 dw set_instruction-assembler
1142
 db 'setnz',95h
1143
 dw set_instruction-assembler
1144
 db 'setpe',9Ah
1145
 dw set_instruction-assembler
1146
 db 'setpo',9Bh
1147
 dw set_instruction-assembler
1148
 db 'stack',0
1149
 dw stack_directive-assembler
1150
 db 'store',0
1151
 dw store_directive-assembler
1152
 db 'stosb',0AAh
1153
 dw simple_instruction-assembler
1154
 db 'stosd',0ABh
1155
 dw simple_instruction_32bit-assembler
1156
 db 'stosq',0ABh
1157
 dw simple_instruction_64bit-assembler
1158
 db 'stosw',0ABh
1159
 dw simple_instruction_16bit-assembler
1160
 db 'subpd',5Ch
1161
 dw sse_pd_instruction-assembler
1162
 db 'subps',5Ch
1163
 dw sse_ps_instruction-assembler
1164
 db 'subsd',5Ch
1165
 dw sse_sd_instruction-assembler
1166
 db 'subss',5Ch
1167
 dw sse_ss_instruction-assembler
1168
 db 'times',0
1169
 dw times_directive-assembler
1170
 db 'vmrun',0D8h
1171
 dw simple_svm_instruction-assembler
1172
 db 'vmxon',6
1173
 dw vmxon_instruction-assembler
1174
 db 'while',0
1175
 dw while_directive-assembler
1176
 db 'wrmsr',30h
1177
 dw simple_extended_instruction-assembler
1178
 db 'xlatb',0D7h
1179
 dw simple_instruction-assembler
1180
 db 'xorpd',57h
1181
 dw sse_pd_instruction-assembler
1182
 db 'xorps',57h
1183
 dw sse_ps_instruction-assembler
1184
instructions_6:
1185
 db 'andnpd',55h
1186
 dw sse_pd_instruction-assembler
1187
 db 'andnps',55h
1188
 dw sse_ps_instruction-assembler
1189
 db 'cmovae',43h
1190
 dw cmov_instruction-assembler
1191
 db 'cmovbe',46h
1192
 dw cmov_instruction-assembler
1193
 db 'cmovge',4Dh
1194
 dw cmov_instruction-assembler
1195
 db 'cmovle',4Eh
1196
 dw cmov_instruction-assembler
1197
 db 'cmovna',46h
1198
 dw cmov_instruction-assembler
1199
 db 'cmovnb',43h
1200
 dw cmov_instruction-assembler
1201
 db 'cmovnc',43h
1202
 dw cmov_instruction-assembler
1203
 db 'cmovne',45h
1204
 dw cmov_instruction-assembler
1205
 db 'cmovng',4Eh
1206
 dw cmov_instruction-assembler
1207
 db 'cmovnl',4Dh
1208
 dw cmov_instruction-assembler
1209
 db 'cmovno',41h
1210
 dw cmov_instruction-assembler
1211
 db 'cmovnp',4Bh
1212
 dw cmov_instruction-assembler
1213
 db 'cmovns',49h
1214
 dw cmov_instruction-assembler
1215
 db 'cmovnz',45h
1216
 dw cmov_instruction-assembler
1217
 db 'cmovpe',4Ah
1218
 dw cmov_instruction-assembler
1219
 db 'cmovpo',4Bh
1220
 dw cmov_instruction-assembler
1221
 db 'comisd',2Fh
1222
 dw comisd_instruction-assembler
1223
 db 'comiss',2Fh
1224
 dw comiss_instruction-assembler
1225
 db 'fcmovb',0C0h
1226
 dw fcmov_instruction-assembler
1227
 db 'fcmove',0C8h
1228
 dw fcmov_instruction-assembler
1229
 db 'fcmovu',0D8h
1230
 dw fcmov_instruction-assembler
1231
 db 'fcomip',0F0h
1232
 dw fcomip_instruction-assembler
1233
 db 'fcompp',0
1234
 dw fcompp_instruction-assembler
1235
 db 'fdivrp',6
1236
 dw faddp_instruction-assembler
1237
 db 'ffreep',0
1238
 dw ffreep_instruction-assembler
1239
 db 'ficomp',3
1240
 dw fi_instruction-assembler
1241
 db 'fidivr',7
1242
 dw fi_instruction-assembler
1243
 db 'fisttp',1
1244
 dw fild_instruction-assembler
1245
 db 'fisubr',5
1246
 dw fi_instruction-assembler
1247
 db 'fldenv',4
1248
 dw fldenv_instruction-assembler
1249
 db 'fldl2e',101010b
1250
 dw simple_fpu_instruction-assembler
1251
 db 'fldl2t',101001b
1252
 dw simple_fpu_instruction-assembler
1253
 db 'fldlg2',101100b
1254
 dw simple_fpu_instruction-assembler
1255
 db 'fldln2',101101b
1256
 dw simple_fpu_instruction-assembler
1257
 db 'fnclex',0E2h
1258
 dw fninit_instruction-assembler
1259
 db 'fndisi',0E1h
1260
 dw fninit_instruction-assembler
1261
 db 'fninit',0E3h
1262
 dw fninit_instruction-assembler
1263
 db 'fnsave',6
1264
 dw fnsave_instruction-assembler
1265
 db 'fnstcw',7
1266
 dw fldcw_instruction-assembler
1267
 db 'fnstsw',0
1268
 dw fnstsw_instruction-assembler
1269
 db 'format',0
1270
 dw format_directive-assembler
1271
 db 'fpatan',110011b
1272
 dw simple_fpu_instruction-assembler
1273
 db 'fprem1',110101b
1274
 dw simple_fpu_instruction-assembler
1275
 db 'frstor',4
1276
 dw fnsave_instruction-assembler
1277
 db 'frstpm',0E5h
1278
 dw fninit_instruction-assembler
1279
 db 'fscale',111101b
1280
 dw simple_fpu_instruction-assembler
1281
 db 'fsetpm',0E4h
1282
 dw fninit_instruction-assembler
1283
 db 'fstenv',6
1284
 dw fstenv_instruction-assembler
1285
 db 'fsubrp',4
1286
 dw faddp_instruction-assembler
1287
 db 'fucomi',0E8h
1288
 dw fcomi_instruction-assembler
1289
 db 'fucomp',5
1290
 dw ffree_instruction-assembler
1291
 db 'fxsave',0
1292
 dw fxsave_instruction-assembler
1293
 db 'haddpd',07Ch
1294
 dw sse_pd_instruction-assembler
1295
 db 'haddps',07Ch
1296
 dw cvtpd2dq_instruction-assembler
1297
 db 'hsubpd',07Dh
1298
 dw sse_pd_instruction-assembler
1299
 db 'hsubps',07Dh
1300
 dw cvtpd2dq_instruction-assembler
1301
 db 'invlpg',0
1302
 dw invlpg_instruction-assembler
1303
 db 'lfence',0E8h
1304
 dw fence_instruction-assembler
1305
 db 'looped',0E1h
1306
 dw loop_instruction_32bit-assembler
1307
 db 'loopeq',0E1h
1308
 dw loop_instruction_64bit-assembler
1309
 db 'loopew',0E1h
1310
 dw loop_instruction_16bit-assembler
1311
 db 'loopne',0E0h
1312
 dw loop_instruction-assembler
1313
 db 'loopnz',0E0h
1314
 dw loop_instruction-assembler
1315
 db 'loopzd',0E1h
1316
 dw loop_instruction_32bit-assembler
1317
 db 'loopzq',0E1h
1318
 dw loop_instruction_64bit-assembler
1319
 db 'loopzw',0E1h
1320
 dw loop_instruction_16bit-assembler
1321
 db 'mfence',0F0h
1322
 dw fence_instruction-assembler
1323
 db 'movapd',28h
1324
 dw movpd_instruction-assembler
1325
 db 'movaps',28h
1326
 dw movps_instruction-assembler
1327
 db 'movdqa',66h
1328
 dw movdq_instruction-assembler
1329
 db 'movdqu',0F3h
1330
 dw movdq_instruction-assembler
1331
 db 'movhpd',16h
1332
 dw movlpd_instruction-assembler
1333
 db 'movhps',16h
1334
 dw movlps_instruction-assembler
1335
 db 'movlpd',12h
1336
 dw movlpd_instruction-assembler
1337
 db 'movlps',12h
1338
 dw movlps_instruction-assembler
1339
 db 'movnti',0C3h
1340
 dw movnti_instruction-assembler
1341
 db 'movntq',0E7h
1342
 dw movntq_instruction-assembler
1343
 db 'movsxd',63h
1344
 dw movsxd_instruction-assembler
1345
 db 'movupd',10h
1346
 dw movpd_instruction-assembler
1347
 db 'movups',10h
1348
 dw movps_instruction-assembler
1349
 db 'paddsb',0ECh
1350
 dw basic_mmx_instruction-assembler
174 heavyiron 1351
 db 'paddsw',0EDh
157 heavyiron 1352
 dw basic_mmx_instruction-assembler
174 heavyiron 1353
 db 'pextrw',0C5h
157 heavyiron 1354
 dw pextrw_instruction-assembler
1355
 db 'pfnacc',8Ah
1356
 dw amd3dnow_instruction-assembler
1357
 db 'pfsubr',0AAh
1358
 dw amd3dnow_instruction-assembler
1359
 db 'phaddd',2
174 heavyiron 1360
 dw ssse3_instruction-assembler
1361
 db 'phaddw',1
1362
 dw ssse3_instruction-assembler
1363
 db 'phsubd',6
1364
 dw ssse3_instruction-assembler
1365
 db 'phsubw',5
1366
 dw ssse3_instruction-assembler
1367
 db 'pinsrw',0C4h
157 heavyiron 1368
 dw pinsrw_instruction-assembler
1369
 db 'pmaxsw',0EEh
1370
 dw basic_mmx_instruction-assembler
174 heavyiron 1371
 db 'pmaxub',0DEh
157 heavyiron 1372
 dw basic_mmx_instruction-assembler
174 heavyiron 1373
 db 'pminsw',0EAh
157 heavyiron 1374
 dw basic_mmx_instruction-assembler
174 heavyiron 1375
 db 'pminub',0DAh
157 heavyiron 1376
 dw basic_mmx_instruction-assembler
174 heavyiron 1377
 db 'pmulhw',0E5h
157 heavyiron 1378
 dw basic_mmx_instruction-assembler
174 heavyiron 1379
 db 'pmullw',0D5h
157 heavyiron 1380
 dw basic_mmx_instruction-assembler
174 heavyiron 1381
 db 'psadbw',0F6h
157 heavyiron 1382
 dw basic_mmx_instruction-assembler
174 heavyiron 1383
 db 'pshufb',0
1384
 dw ssse3_instruction-assembler
1385
 db 'pshufd',66h
157 heavyiron 1386
 dw pshufd_instruction-assembler
1387
 db 'pshufw',0
1388
 dw pshufw_instruction-assembler
1389
 db 'psignb',8
174 heavyiron 1390
 dw ssse3_instruction-assembler
1391
 db 'psignd',0Ah
1392
 dw ssse3_instruction-assembler
1393
 db 'psignw',9
1394
 dw ssse3_instruction-assembler
1395
 db 'pslldq',111b
157 heavyiron 1396
 dw ps_dq_instruction-assembler
1397
 db 'psrldq',011b
1398
 dw ps_dq_instruction-assembler
1399
 db 'psubsb',0E8h
1400
 dw basic_mmx_instruction-assembler
174 heavyiron 1401
 db 'psubsw',0E9h
157 heavyiron 1402
 dw basic_mmx_instruction-assembler
174 heavyiron 1403
 db 'pswapd',0BBh
157 heavyiron 1404
 dw amd3dnow_instruction-assembler
1405
 db 'public',0
1406
 dw public_directive-assembler
1407
 db 'pushad',60h
1408
 dw simple_instruction_32bit_except64-assembler
1409
 db 'pushaw',60h
1410
 dw simple_instruction_16bit_except64-assembler
1411
 db 'pushfd',9Ch
1412
 dw simple_instruction_32bit_except64-assembler
1413
 db 'pushfq',9Ch
1414
 dw simple_instruction_only64-assembler
1415
 db 'pushfw',9Ch
1416
 dw simple_instruction_16bit-assembler
1417
 db 'rdmsrq',32h
1418
 dw simple_extended_instruction_64bit-assembler
1419
 db 'rdtscp',1
1420
 dw swapgs_instruction-assembler
1421
 db 'repeat',0
1422
 dw repeat_directive-assembler
1423
 db 'setalc',0D6h
1424
 dw simple_instruction_except64-assembler
1425
 db 'setnae',92h
1426
 dw set_instruction-assembler
1427
 db 'setnbe',97h
1428
 dw set_instruction-assembler
1429
 db 'setnge',9Ch
1430
 dw set_instruction-assembler
1431
 db 'setnle',9Fh
1432
 dw set_instruction-assembler
1433
 db 'sfence',0F8h
1434
 dw fence_instruction-assembler
1435
 db 'shufpd',0C6h
1436
 dw sse_pd_instruction-assembler
1437
 db 'shufps',0C6h
1438
 dw sse_ps_instruction-assembler
1439
 db 'skinit',0
1440
 dw skinit_instruction-assembler
1441
 db 'sqrtpd',51h
1442
 dw sse_pd_instruction-assembler
1443
 db 'sqrtps',51h
1444
 dw sse_ps_instruction-assembler
1445
 db 'sqrtsd',51h
1446
 dw sse_sd_instruction-assembler
1447
 db 'sqrtss',51h
1448
 dw sse_ss_instruction-assembler
1449
 db 'swapgs',0
1450
 dw swapgs_instruction-assembler
1451
 db 'sysret',07h
1452
 dw simple_extended_instruction-assembler
1453
 db 'vmcall',0C1h
1454
 dw simple_vmx_instruction-assembler
1455
 db 'vmload',0DAh
1456
 dw simple_svm_instruction-assembler
1457
 db 'vmread',0
1458
 dw vmread_instruction-assembler
1459
 db 'vmsave',0DBh
1460
 dw simple_svm_instruction-assembler
1461
 db 'vmxoff',0C4h
1462
 dw simple_vmx_instruction-assembler
1463
 db 'wbinvd',9
1464
 dw simple_extended_instruction-assembler
1465
 db 'wrmsrq',30h
1466
 dw simple_extended_instruction_64bit-assembler
1467
instructions_7:
1468
 db 'clflush',111b
1469
 dw fxsave_instruction-assembler
1470
 db 'cmovnae',42h
1471
 dw cmov_instruction-assembler
1472
 db 'cmovnbe',47h
1473
 dw cmov_instruction-assembler
1474
 db 'cmovnge',4Ch
1475
 dw cmov_instruction-assembler
1476
 db 'cmovnle',4Fh
1477
 dw cmov_instruction-assembler
1478
 db 'cmpeqpd',0
1479
 dw cmp_pd_instruction-assembler
1480
 db 'cmpeqps',0
1481
 dw cmp_ps_instruction-assembler
1482
 db 'cmpeqsd',0
1483
 dw cmp_sd_instruction-assembler
1484
 db 'cmpeqss',0
1485
 dw cmp_ss_instruction-assembler
1486
 db 'cmplepd',2
1487
 dw cmp_pd_instruction-assembler
1488
 db 'cmpleps',2
1489
 dw cmp_ps_instruction-assembler
1490
 db 'cmplesd',2
1491
 dw cmp_sd_instruction-assembler
1492
 db 'cmpless',2
1493
 dw cmp_ss_instruction-assembler
1494
 db 'cmpltpd',1
1495
 dw cmp_pd_instruction-assembler
1496
 db 'cmpltps',1
1497
 dw cmp_ps_instruction-assembler
1498
 db 'cmpltsd',1
1499
 dw cmp_sd_instruction-assembler
1500
 db 'cmpltss',1
1501
 dw cmp_ss_instruction-assembler
1502
 db 'cmpxchg',0B0h
1503
 dw basic_486_instruction-assembler
1504
 db 'display',0
1505
 dw display_directive-assembler
1506
 db 'fcmovbe',0D0h
1507
 dw fcmov_instruction-assembler
1508
 db 'fcmovnb',0C0h
1509
 dw fcomi_instruction-assembler
1510
 db 'fcmovne',0C8h
1511
 dw fcomi_instruction-assembler
1512
 db 'fcmovnu',0D8h
1513
 dw fcomi_instruction-assembler
1514
 db 'fdecstp',110110b
1515
 dw simple_fpu_instruction-assembler
1516
 db 'fincstp',110111b
1517
 dw simple_fpu_instruction-assembler
1518
 db 'fnstenv',6
1519
 dw fldenv_instruction-assembler
1520
 db 'frndint',111100b
1521
 dw simple_fpu_instruction-assembler
1522
 db 'fsincos',111011b
1523
 dw simple_fpu_instruction-assembler
1524
 db 'fucomip',0E8h
1525
 dw fcomip_instruction-assembler
1526
 db 'fucompp',0
1527
 dw fucompp_instruction-assembler
1528
 db 'fxrstor',1
1529
 dw fxsave_instruction-assembler
1530
 db 'fxtract',110100b
1531
 dw simple_fpu_instruction-assembler
1532
 db 'fyl2xp1',111001b
1533
 dw simple_fpu_instruction-assembler
1534
 db 'invlpga',0DFh
1535
 dw invlpga_instruction-assembler
1536
 db 'ldmxcsr',10b
1537
 dw fxsave_instruction-assembler
1538
 db 'loopned',0E0h
1539
 dw loop_instruction_32bit-assembler
1540
 db 'loopneq',0E0h
1541
 dw loop_instruction_64bit-assembler
1542
 db 'loopnew',0E0h
1543
 dw loop_instruction_16bit-assembler
1544
 db 'loopnzd',0E0h
1545
 dw loop_instruction_32bit-assembler
1546
 db 'loopnzq',0E0h
1547
 dw loop_instruction_64bit-assembler
1548
 db 'loopnzw',0E0h
1549
 dw loop_instruction_16bit-assembler
1550
 db 'monitor',0C8h
1551
 dw monitor_instruction-assembler
1552
 db 'movddup',12h
1553
 dw sse_sd_instruction-assembler
1554
 db 'movdq2q',0
1555
 dw movdq2q_instruction-assembler
1556
 db 'movhlps',12h
1557
 dw movhlps_instruction-assembler
1558
 db 'movlhps',16h
1559
 dw movhlps_instruction-assembler
1560
 db 'movntdq',0E7h
1561
 dw movntdq_instruction-assembler
1562
 db 'movntpd',2Bh
1563
 dw movntdq_instruction-assembler
1564
 db 'movntps',2Bh
1565
 dw movntps_instruction-assembler
1566
 db 'movq2dq',0
1567
 dw movq2dq_instruction-assembler
1568
 db 'paddusb',0DCh
1569
 dw basic_mmx_instruction-assembler
174 heavyiron 1570
 db 'paddusw',0DDh
157 heavyiron 1571
 dw basic_mmx_instruction-assembler
174 heavyiron 1572
 db 'palignr',0
1573
 dw palignr_instruction-assembler
1574
 db 'pavgusb',0BFh
157 heavyiron 1575
 dw amd3dnow_instruction-assembler
1576
 db 'pcmpeqb',74h
1577
 dw basic_mmx_instruction-assembler
174 heavyiron 1578
 db 'pcmpeqd',76h
157 heavyiron 1579
 dw basic_mmx_instruction-assembler
174 heavyiron 1580
 db 'pcmpeqw',75h
157 heavyiron 1581
 dw basic_mmx_instruction-assembler
174 heavyiron 1582
 db 'pcmpgtb',64h
157 heavyiron 1583
 dw basic_mmx_instruction-assembler
174 heavyiron 1584
 db 'pcmpgtd',66h
157 heavyiron 1585
 dw basic_mmx_instruction-assembler
174 heavyiron 1586
 db 'pcmpgtw',65h
157 heavyiron 1587
 dw basic_mmx_instruction-assembler
174 heavyiron 1588
 db 'pfcmpeq',0B0h
157 heavyiron 1589
 dw amd3dnow_instruction-assembler
1590
 db 'pfcmpge',90h
1591
 dw amd3dnow_instruction-assembler
1592
 db 'pfcmpgt',0A0h
1593
 dw amd3dnow_instruction-assembler
1594
 db 'pfpnacc',8Eh
1595
 dw amd3dnow_instruction-assembler
1596
 db 'pfrsqrt',97h
1597
 dw amd3dnow_instruction-assembler
1598
 db 'phaddsw',3
174 heavyiron 1599
 dw ssse3_instruction-assembler
1600
 db 'phsubsw',7
1601
 dw ssse3_instruction-assembler
1602
 db 'pmaddwd',0F5h
157 heavyiron 1603
 dw basic_mmx_instruction-assembler
174 heavyiron 1604
 db 'pmulhrw',0B7h
157 heavyiron 1605
 dw amd3dnow_instruction-assembler
1606
 db 'pmulhuw',0E4h
1607
 dw basic_mmx_instruction-assembler
174 heavyiron 1608
 db 'pmuludq',0F4h
157 heavyiron 1609
 dw basic_mmx_instruction-assembler
174 heavyiron 1610
 db 'pshufhw',0F3h
157 heavyiron 1611
 dw pshufd_instruction-assembler
1612
 db 'pshuflw',0F2h
1613
 dw pshufd_instruction-assembler
1614
 db 'psubusb',0D8h
1615
 dw basic_mmx_instruction-assembler
174 heavyiron 1616
 db 'psubusw',0D9h
157 heavyiron 1617
 dw basic_mmx_instruction-assembler
174 heavyiron 1618
 db 'rsqrtps',52h
157 heavyiron 1619
 dw sse_ps_instruction-assembler
1620
 db 'rsqrtss',52h
1621
 dw sse_ss_instruction-assembler
1622
 db 'section',0
1623
 dw section_directive-assembler
1624
 db 'segment',0
1625
 dw segment_directive-assembler
1626
 db 'stmxcsr',11b
1627
 dw fxsave_instruction-assembler
1628
 db 'syscall',05h
1629
 dw simple_extended_instruction-assembler
1630
 db 'sysexit',35h
1631
 dw simple_extended_instruction-assembler
1632
 db 'sysretq',07h
1633
 dw simple_extended_instruction_64bit-assembler
1634
 db 'ucomisd',2Eh
1635
 dw comisd_instruction-assembler
1636
 db 'ucomiss',2Eh
1637
 dw comiss_instruction-assembler
1638
 db 'virtual',0
1639
 dw virtual_directive-assembler
1640
 db 'vmclear',6
1641
 dw vmclear_instruction-assembler
1642
 db 'vmmcall',0D9h
1643
 dw simple_vmx_instruction-assembler
1644
 db 'vmptrld',6
1645
 dw vmx_instruction-assembler
1646
 db 'vmptrst',7
1647
 dw vmx_instruction-assembler
1648
 db 'vmwrite',0
1649
 dw vmwrite_instruction-assembler
1650
instructions_8:
1651
 db 'addsubpd',0D0h
1652
 dw sse_pd_instruction-assembler
1653
 db 'addsubps',0D0h
1654
 dw cvtpd2dq_instruction-assembler
1655
 db 'cmpneqpd',4
1656
 dw cmp_pd_instruction-assembler
1657
 db 'cmpneqps',4
1658
 dw cmp_ps_instruction-assembler
1659
 db 'cmpneqsd',4
1660
 dw cmp_sd_instruction-assembler
1661
 db 'cmpneqss',4
1662
 dw cmp_ss_instruction-assembler
1663
 db 'cmpnlepd',6
1664
 dw cmp_pd_instruction-assembler
1665
 db 'cmpnleps',6
1666
 dw cmp_ps_instruction-assembler
1667
 db 'cmpnlesd',6
1668
 dw cmp_sd_instruction-assembler
1669
 db 'cmpnless',6
1670
 dw cmp_ss_instruction-assembler
1671
 db 'cmpnltpd',5
1672
 dw cmp_pd_instruction-assembler
1673
 db 'cmpnltps',5
1674
 dw cmp_ps_instruction-assembler
1675
 db 'cmpnltsd',5
1676
 dw cmp_sd_instruction-assembler
1677
 db 'cmpnltss',5
1678
 dw cmp_ss_instruction-assembler
1679
 db 'cmpordpd',7
1680
 dw cmp_pd_instruction-assembler
1681
 db 'cmpordps',7
1682
 dw cmp_ps_instruction-assembler
1683
 db 'cmpordsd',7
1684
 dw cmp_sd_instruction-assembler
1685
 db 'cmpordss',7
1686
 dw cmp_ss_instruction-assembler
1687
 db 'cvtdq2pd',0E6h
1688
 dw cvtdq2pd_instruction-assembler
1689
 db 'cvtdq2ps',5Bh
1690
 dw sse_ps_instruction-assembler
1691
 db 'cvtpd2dq',0E6h
1692
 dw cvtpd2dq_instruction-assembler
1693
 db 'cvtpd2pi',2Dh
1694
 dw cvtpd2pi_instruction-assembler
1695
 db 'cvtpd2ps',5Ah
1696
 dw sse_pd_instruction-assembler
1697
 db 'cvtpi2pd',2Ah
1698
 dw cvtpi2pd_instruction-assembler
1699
 db 'cvtpi2ps',2Ah
1700
 dw cvtpi2ps_instruction-assembler
1701
 db 'cvtps2dq',5Bh
1702
 dw sse_pd_instruction-assembler
1703
 db 'cvtps2pd',5Ah
1704
 dw cvtps2pd_instruction-assembler
1705
 db 'cvtps2pi',2Dh
1706
 dw cvtps2pi_instruction-assembler
1707
 db 'cvtsd2si',2Dh
1708
 dw cvtsd2si_instruction-assembler
1709
 db 'cvtsd2ss',5Ah
1710
 dw sse_sd_instruction-assembler
1711
 db 'cvtsi2sd',2Ah
1712
 dw cvtsi2sd_instruction-assembler
1713
 db 'cvtsi2ss',2Ah
1714
 dw cvtsi2ss_instruction-assembler
1715
 db 'cvtss2sd',5Ah
1716
 dw sse_ss_instruction-assembler
1717
 db 'cvtss2si',2Dh
1718
 dw cvtss2si_instruction-assembler
1719
 db 'fcmovnbe',0D0h
1720
 dw fcomi_instruction-assembler
1721
 db 'maskmovq',0
1722
 dw maskmovq_instruction-assembler
1723
 db 'movmskpd',0
1724
 dw movmskpd_instruction-assembler
1725
 db 'movmskps',0
1726
 dw movmskps_instruction-assembler
1727
 db 'movshdup',16h
1728
 dw cvtdq2pd_instruction-assembler
1729
 db 'movsldup',12h
1730
 dw cvtdq2pd_instruction-assembler
1731
 db 'packssdw',6Bh
1732
 dw basic_mmx_instruction-assembler
174 heavyiron 1733
 db 'packsswb',63h
157 heavyiron 1734
 dw basic_mmx_instruction-assembler
174 heavyiron 1735
 db 'packuswb',67h
157 heavyiron 1736
 dw basic_mmx_instruction-assembler
174 heavyiron 1737
 db 'pfrcpit1',0A6h
157 heavyiron 1738
 dw amd3dnow_instruction-assembler
1739
 db 'pfrcpit2',0B6h
1740
 dw amd3dnow_instruction-assembler
1741
 db 'pfrsqit1',0A7h
1742
 dw amd3dnow_instruction-assembler
1743
 db 'pmovmskb',0D7h
1744
 dw pextrw_instruction-assembler
1745
 db 'pmulhrsw',0Bh
174 heavyiron 1746
 dw ssse3_instruction-assembler
1747
 db 'prefetch',0
157 heavyiron 1748
 dw amd_prefetch_instruction-assembler
1749
 db 'sysenter',34h
1750
 dw simple_extended_instruction-assembler
1751
 db 'sysexitq',35h
1752
 dw simple_extended_instruction_64bit-assembler
1753
 db 'unpckhpd',15h
1754
 dw sse_pd_instruction-assembler
1755
 db 'unpckhps',15h
1756
 dw sse_ps_instruction-assembler
1757
 db 'unpcklpd',14h
1758
 dw sse_pd_instruction-assembler
1759
 db 'unpcklps',14h
1760
 dw sse_ps_instruction-assembler
1761
 db 'vmlaunch',0C2h
1762
 dw simple_vmx_instruction-assembler
1763
 db 'vmresume',0C3h
1764
 dw simple_vmx_instruction-assembler
1765
instructions_9:
1766
 db 'cmpxchg8b',8
1767
 dw cmpxchgx_instruction-assembler
1768
 db 'cvttpd2dq',0E6h
1769
 dw sse_pd_instruction-assembler
1770
 db 'cvttpd2pi',2Ch
1771
 dw cvtpd2pi_instruction-assembler
1772
 db 'cvttps2dq',5Bh
1773
 dw cvtdq2pd_instruction-assembler
1774
 db 'cvttps2pi',2Ch
1775
 dw cvtps2pi_instruction-assembler
1776
 db 'cvttsd2si',2Ch
1777
 dw cvtsd2si_instruction-assembler
1778
 db 'cvttss2si',2Ch
1779
 dw cvtss2si_instruction-assembler
1780
 db 'pmaddubsw',4
174 heavyiron 1781
 dw ssse3_instruction-assembler
1782
 db 'prefetchw',1
157 heavyiron 1783
 dw amd_prefetch_instruction-assembler
1784
 db 'punpckhbw',68h
1785
 dw basic_mmx_instruction-assembler
174 heavyiron 1786
 db 'punpckhdq',6Ah
157 heavyiron 1787
 dw basic_mmx_instruction-assembler
174 heavyiron 1788
 db 'punpckhwd',69h
157 heavyiron 1789
 dw basic_mmx_instruction-assembler
174 heavyiron 1790
 db 'punpcklbw',60h
157 heavyiron 1791
 dw basic_mmx_instruction-assembler
174 heavyiron 1792
 db 'punpckldq',62h
157 heavyiron 1793
 dw basic_mmx_instruction-assembler
174 heavyiron 1794
 db 'punpcklwd',61h
157 heavyiron 1795
 dw basic_mmx_instruction-assembler
174 heavyiron 1796
instructions_10:
157 heavyiron 1797
 db 'cmpunordpd',3
1798
 dw cmp_pd_instruction-assembler
1799
 db 'cmpunordps',3
1800
 dw cmp_ps_instruction-assembler
1801
 db 'cmpunordsd',3
1802
 dw cmp_sd_instruction-assembler
1803
 db 'cmpunordss',3
1804
 dw cmp_ss_instruction-assembler
1805
 db 'cmpxchg16b',16
1806
 dw cmpxchgx_instruction-assembler
1807
 db 'loadall286',5
1808
 dw simple_extended_instruction-assembler
1809
 db 'loadall386',7
1810
 dw simple_extended_instruction-assembler
1811
 db 'maskmovdqu',0
1812
 dw maskmovdqu_instruction-assembler
1813
 db 'prefetcht0',1
1814
 dw prefetch_instruction-assembler
1815
 db 'prefetcht1',2
1816
 dw prefetch_instruction-assembler
1817
 db 'prefetcht2',3
1818
 dw prefetch_instruction-assembler
1819
 db 'punpckhqdq',6Dh
1820
 dw sse_pd_instruction-assembler
1821
 db 'punpcklqdq',6Ch
1822
 dw sse_pd_instruction-assembler
1823
instructions_11:
1824
 db 'prefetchnta',0
1825
 dw prefetch_instruction-assembler
1826
instructions_end:
1827
1828
 
1829
 dw data_directives_2-data_directives,(data_directives_3-data_directives_2)/(2+3)
1830
 dw data_directives_3-data_directives,(data_directives_4-data_directives_3)/(3+3)
1831
 dw data_directives_4-data_directives,(data_directives_end-data_directives_4)/(4+3)
1832
1833
 
1834
 db 'db',1
1835
 dw data_bytes-assembler
1836
 db 'dd',4
1837
 dw data_dwords-assembler
1838
 db 'df',6
1839
 dw data_pwords-assembler
1840
 db 'dp',6
1841
 dw data_pwords-assembler
1842
 db 'dq',8
1843
 dw data_qwords-assembler
1844
 db 'dt',10
1845
 dw data_twords-assembler
1846
 db 'du',2
1847
 dw data_unicode-assembler
1848
 db 'dw',2
1849
 dw data_words-assembler
1850
 db 'rb',1
1851
 dw reserve_bytes-assembler
1852
 db 'rd',4
1853
 dw reserve_dwords-assembler
1854
 db 'rf',6
1855
 dw reserve_pwords-assembler
1856
 db 'rp',6
1857
 dw reserve_pwords-assembler
1858
 db 'rq',8
1859
 dw reserve_qwords-assembler
1860
 db 'rt',10
1861
 dw reserve_twords-assembler
1862
 db 'rw',2
1863
 dw reserve_words-assembler
1864
data_directives_3:
1865
data_directives_4:
1866
 db 'file',1
1867
 dw data_file-assembler
1868
data_directives_end:
1869