-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlist.asm
1452 lines (1452 loc) · 24.7 KB
/
list.asm
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0x0: add byte ptr [rax - 0x75], cl
0x0: add ebx, eax
0x0: ret
0x0: ret
0x0: ret
=======================
0x1: add dword ptr [rax - 0x75], ecx
0x1: add ebx, eax
0x1: ret
0x1: ret
0x1: ret
=======================
0x2: add cl, byte ptr [rax - 0x75]
0x2: add ebx, eax
0x2: ret
0x2: ret
0x2: ret
=======================
0x3: add ecx, dword ptr [rax - 0x75]
0x3: add ebx, eax
0x3: ret
0x3: ret
0x3: ret
=======================
0x4: add al, 0x48
0x4: mov eax, dword ptr [rcx]
0x4: ret
0x4: ret
0x4: ret
0x4: ret
=======================
0x5: add eax, 0xc3018b48
0x5: ret
0x5: ret
0x5: ret
=======================
=======================
=======================
0x8: or byte ptr [rax - 0x75], cl
0x8: add ebx, eax
0x8: ret
0x8: ret
0x8: ret
=======================
0x9: or dword ptr [rax - 0x75], ecx
0x9: add ebx, eax
0x9: ret
0x9: ret
0x9: ret
=======================
0xa: or cl, byte ptr [rax - 0x75]
0xa: add ebx, eax
0xa: ret
0xa: ret
0xa: ret
=======================
0xb: or ecx, dword ptr [rax - 0x75]
0xb: add ebx, eax
0xb: ret
0xb: ret
0xb: ret
=======================
0xc: or al, 0x48
0xc: mov eax, dword ptr [rcx]
0xc: ret
0xc: ret
0xc: ret
0xc: ret
=======================
0xd: or eax, 0xc3018b48
0xd: ret
0xd: ret
0xd: ret
=======================
=======================
0xf: cmovs ecx, dword ptr [rbx - 0x3c3c3cff]
0xf: ret
=======================
0x10: adc byte ptr [rax - 0x75], cl
0x10: add ebx, eax
0x10: ret
0x10: ret
0x10: ret
=======================
0x11: adc dword ptr [rax - 0x75], ecx
0x11: add ebx, eax
0x11: ret
0x11: ret
0x11: ret
=======================
0x12: adc cl, byte ptr [rax - 0x75]
0x12: add ebx, eax
0x12: ret
0x12: ret
0x12: ret
=======================
0x13: adc ecx, dword ptr [rax - 0x75]
0x13: add ebx, eax
0x13: ret
0x13: ret
0x13: ret
=======================
0x14: adc al, 0x48
0x14: mov eax, dword ptr [rcx]
0x14: ret
0x14: ret
0x14: ret
0x14: ret
=======================
0x15: adc eax, 0xc3018b48
0x15: ret
0x15: ret
0x15: ret
=======================
=======================
=======================
0x18: sbb byte ptr [rax - 0x75], cl
0x18: add ebx, eax
0x18: ret
0x18: ret
0x18: ret
=======================
0x19: sbb dword ptr [rax - 0x75], ecx
0x19: add ebx, eax
0x19: ret
0x19: ret
0x19: ret
=======================
0x1a: sbb cl, byte ptr [rax - 0x75]
0x1a: add ebx, eax
0x1a: ret
0x1a: ret
0x1a: ret
=======================
0x1b: sbb ecx, dword ptr [rax - 0x75]
0x1b: add ebx, eax
0x1b: ret
0x1b: ret
0x1b: ret
=======================
0x1c: sbb al, 0x48
0x1c: mov eax, dword ptr [rcx]
0x1c: ret
0x1c: ret
0x1c: ret
0x1c: ret
=======================
0x1d: sbb eax, 0xc3018b48
0x1d: ret
0x1d: ret
0x1d: ret
=======================
=======================
=======================
0x20: and byte ptr [rax - 0x75], cl
0x20: add ebx, eax
0x20: ret
0x20: ret
0x20: ret
=======================
0x21: and dword ptr [rax - 0x75], ecx
0x21: add ebx, eax
0x21: ret
0x21: ret
0x21: ret
=======================
0x22: and cl, byte ptr [rax - 0x75]
0x22: add ebx, eax
0x22: ret
0x22: ret
0x22: ret
=======================
0x23: and ecx, dword ptr [rax - 0x75]
0x23: add ebx, eax
0x23: ret
0x23: ret
0x23: ret
=======================
0x24: and al, 0x48
0x24: mov eax, dword ptr [rcx]
0x24: ret
0x24: ret
0x24: ret
0x24: ret
=======================
0x25: and eax, 0xc3018b48
0x25: ret
0x25: ret
0x25: ret
=======================
0x26: mov rax, qword ptr es:[rcx]
0x26: ret
0x26: ret
0x26: ret
0x26: ret
=======================
=======================
0x28: sub byte ptr [rax - 0x75], cl
0x28: add ebx, eax
0x28: ret
0x28: ret
0x28: ret
=======================
0x29: sub dword ptr [rax - 0x75], ecx
0x29: add ebx, eax
0x29: ret
0x29: ret
0x29: ret
=======================
0x2a: sub cl, byte ptr [rax - 0x75]
0x2a: add ebx, eax
0x2a: ret
0x2a: ret
0x2a: ret
=======================
0x2b: sub ecx, dword ptr [rax - 0x75]
0x2b: add ebx, eax
0x2b: ret
0x2b: ret
0x2b: ret
=======================
0x2c: sub al, 0x48
0x2c: mov eax, dword ptr [rcx]
0x2c: ret
0x2c: ret
0x2c: ret
0x2c: ret
=======================
0x2d: sub eax, 0xc3018b48
0x2d: ret
0x2d: ret
0x2d: ret
=======================
0x2e: mov rax, qword ptr cs:[rcx]
0x2e: ret
0x2e: ret
0x2e: ret
0x2e: ret
=======================
=======================
0x30: xor byte ptr [rax - 0x75], cl
0x30: add ebx, eax
0x30: ret
0x30: ret
0x30: ret
=======================
0x31: xor dword ptr [rax - 0x75], ecx
0x31: add ebx, eax
0x31: ret
0x31: ret
0x31: ret
=======================
0x32: xor cl, byte ptr [rax - 0x75]
0x32: add ebx, eax
0x32: ret
0x32: ret
0x32: ret
=======================
0x33: xor ecx, dword ptr [rax - 0x75]
0x33: add ebx, eax
0x33: ret
0x33: ret
0x33: ret
=======================
0x34: xor al, 0x48
0x34: mov eax, dword ptr [rcx]
0x34: ret
0x34: ret
0x34: ret
0x34: ret
=======================
0x35: xor eax, 0xc3018b48
0x35: ret
0x35: ret
0x35: ret
=======================
0x36: mov rax, qword ptr ss:[rcx]
0x36: ret
0x36: ret
0x36: ret
0x36: ret
=======================
=======================
0x38: cmp byte ptr [rax - 0x75], cl
0x38: add ebx, eax
0x38: ret
0x38: ret
0x38: ret
=======================
0x39: cmp dword ptr [rax - 0x75], ecx
0x39: add ebx, eax
0x39: ret
0x39: ret
0x39: ret
=======================
0x3a: cmp cl, byte ptr [rax - 0x75]
0x3a: add ebx, eax
0x3a: ret
0x3a: ret
0x3a: ret
=======================
0x3b: cmp ecx, dword ptr [rax - 0x75]
0x3b: add ebx, eax
0x3b: ret
0x3b: ret
0x3b: ret
=======================
0x3c: cmp al, 0x48
0x3c: mov eax, dword ptr [rcx]
0x3c: ret
0x3c: ret
0x3c: ret
0x3c: ret
=======================
0x3d: cmp eax, 0xc3018b48
0x3d: ret
0x3d: ret
0x3d: ret
=======================
0x3e: mov rax, qword ptr ds:[rcx]
0x3e: ret
0x3e: ret
0x3e: ret
0x3e: ret
=======================
=======================
0x40: mov rax, qword ptr [rcx]
0x40: ret
0x40: ret
0x40: ret
0x40: ret
=======================
0x41: mov rax, qword ptr [rcx]
0x41: ret
0x41: ret
0x41: ret
0x41: ret
=======================
0x42: mov rax, qword ptr [rcx]
0x42: ret
0x42: ret
0x42: ret
0x42: ret
=======================
0x43: mov rax, qword ptr [rcx]
0x43: ret
0x43: ret
0x43: ret
0x43: ret
=======================
0x44: mov rax, qword ptr [rcx]
0x44: ret
0x44: ret
0x44: ret
0x44: ret
=======================
0x45: mov rax, qword ptr [rcx]
0x45: ret
0x45: ret
0x45: ret
0x45: ret
=======================
0x46: mov rax, qword ptr [rcx]
0x46: ret
0x46: ret
0x46: ret
0x46: ret
=======================
0x47: mov rax, qword ptr [rcx]
0x47: ret
0x47: ret
0x47: ret
0x47: ret
=======================
0x48: mov rax, qword ptr [rcx]
0x48: ret
0x48: ret
0x48: ret
0x48: ret
=======================
0x49: mov rax, qword ptr [rcx]
0x49: ret
0x49: ret
0x49: ret
0x49: ret
=======================
0x4a: mov rax, qword ptr [rcx]
0x4a: ret
0x4a: ret
0x4a: ret
0x4a: ret
=======================
0x4b: mov rax, qword ptr [rcx]
0x4b: ret
0x4b: ret
0x4b: ret
0x4b: ret
=======================
0x4c: mov rax, qword ptr [rcx]
0x4c: ret
0x4c: ret
0x4c: ret
0x4c: ret
=======================
0x4d: mov rax, qword ptr [rcx]
0x4d: ret
0x4d: ret
0x4d: ret
0x4d: ret
=======================
0x4e: mov rax, qword ptr [rcx]
0x4e: ret
0x4e: ret
0x4e: ret
0x4e: ret
=======================
0x4f: mov rax, qword ptr [rcx]
0x4f: ret
0x4f: ret
0x4f: ret
0x4f: ret
=======================
0x50: push rax
0x50: mov rax, qword ptr [rcx]
0x50: ret
0x50: ret
0x50: ret
0x50: ret
=======================
0x51: push rcx
0x51: mov rax, qword ptr [rcx]
0x51: ret
0x51: ret
0x51: ret
0x51: ret
=======================
0x52: push rdx
0x52: mov rax, qword ptr [rcx]
0x52: ret
0x52: ret
0x52: ret
0x52: ret
=======================
0x53: push rbx
0x53: mov rax, qword ptr [rcx]
0x53: ret
0x53: ret
0x53: ret
0x53: ret
=======================
0x54: push rsp
0x54: mov rax, qword ptr [rcx]
0x54: ret
0x54: ret
0x54: ret
0x54: ret
=======================
0x55: push rbp
0x55: mov rax, qword ptr [rcx]
0x55: ret
0x55: ret
0x55: ret
0x55: ret
=======================
0x56: push rsi
0x56: mov rax, qword ptr [rcx]
0x56: ret
0x56: ret
0x56: ret
0x56: ret
=======================
0x57: push rdi
0x57: mov rax, qword ptr [rcx]
0x57: ret
0x57: ret
0x57: ret
0x57: ret
=======================
0x58: pop rax
0x58: mov rax, qword ptr [rcx]
0x58: ret
0x58: ret
0x58: ret
0x58: ret
=======================
0x59: pop rcx
0x59: mov rax, qword ptr [rcx]
0x59: ret
0x59: ret
0x59: ret
0x59: ret
=======================
0x5a: pop rdx
0x5a: mov rax, qword ptr [rcx]
0x5a: ret
0x5a: ret
0x5a: ret
0x5a: ret
=======================
0x5b: pop rbx
0x5b: mov rax, qword ptr [rcx]
0x5b: ret
0x5b: ret
0x5b: ret
0x5b: ret
=======================
0x5c: pop rsp
0x5c: mov rax, qword ptr [rcx]
0x5c: ret
0x5c: ret
0x5c: ret
0x5c: ret
=======================
0x5d: pop rbp
0x5d: mov rax, qword ptr [rcx]
0x5d: ret
0x5d: ret
0x5d: ret
0x5d: ret
=======================
0x5e: pop rsi
0x5e: mov rax, qword ptr [rcx]
0x5e: ret
0x5e: ret
0x5e: ret
0x5e: ret
=======================
0x5f: pop rdi
0x5f: mov rax, qword ptr [rcx]
0x5f: ret
0x5f: ret
0x5f: ret
0x5f: ret
=======================
=======================
=======================
=======================
0x63: movsxd rcx, dword ptr [rax - 0x75]
0x63: add ebx, eax
0x63: ret
0x63: ret
0x63: ret
=======================
0x64: mov rax, qword ptr fs:[rcx]
0x64: ret
0x64: ret
0x64: ret
0x64: ret
=======================
0x65: mov rax, qword ptr gs:[rcx]
0x65: ret
0x65: ret
0x65: ret
0x65: ret
=======================
0x66: mov rax, qword ptr [rcx]
0x66: ret
0x66: ret
0x66: ret
0x66: ret
=======================
0x67: mov rax, qword ptr [ecx]
0x67: ret
0x67: ret
0x67: ret
0x67: ret
=======================
0x68: push -0x3cfe74b8
0x68: ret
0x68: ret
0x68: ret
=======================
0x69: imul ecx, dword ptr [rax - 0x75], 0xc3c3c301
0x69: ret
=======================
0x6a: push 0x48
0x6a: mov eax, dword ptr [rcx]
0x6a: ret
0x6a: ret
0x6a: ret
0x6a: ret
=======================
0x6b: imul ecx, dword ptr [rax - 0x75], 1
0x6b: ret
0x6b: ret
0x6b: ret
0x6b: ret
=======================
0x6c: insb byte ptr [rdi], dx
0x6c: mov rax, qword ptr [rcx]
0x6c: ret
0x6c: ret
0x6c: ret
0x6c: ret
=======================
0x6d: insd dword ptr [rdi], dx
0x6d: mov rax, qword ptr [rcx]
0x6d: ret
0x6d: ret
0x6d: ret
0x6d: ret
=======================
0x6e: outsb dx, byte ptr [rsi]
0x6e: mov rax, qword ptr [rcx]
0x6e: ret
0x6e: ret
0x6e: ret
0x6e: ret
=======================
0x6f: outsd dx, dword ptr [rsi]
0x6f: mov rax, qword ptr [rcx]
0x6f: ret
0x6f: ret
0x6f: ret
0x6f: ret
=======================
0x70: jo 0x104a
0x70: mov eax, dword ptr [rcx]
0x70: ret
0x70: ret
0x70: ret
0x70: ret
=======================
0x71: jno 0x104a
0x71: mov eax, dword ptr [rcx]
0x71: ret
0x71: ret
0x71: ret
0x71: ret
=======================
0x72: jb 0x104a
0x72: mov eax, dword ptr [rcx]
0x72: ret
0x72: ret
0x72: ret
0x72: ret
=======================
0x73: jae 0x104a
0x73: mov eax, dword ptr [rcx]
0x73: ret
0x73: ret
0x73: ret
0x73: ret
=======================
0x74: je 0x104a
0x74: mov eax, dword ptr [rcx]
0x74: ret
0x74: ret
0x74: ret
0x74: ret
=======================
0x75: jne 0x104a
0x75: mov eax, dword ptr [rcx]
0x75: ret
0x75: ret
0x75: ret
0x75: ret
=======================
0x76: jbe 0x104a
0x76: mov eax, dword ptr [rcx]
0x76: ret
0x76: ret
0x76: ret
0x76: ret
=======================
0x77: ja 0x104a
0x77: mov eax, dword ptr [rcx]
0x77: ret
0x77: ret
0x77: ret
0x77: ret
=======================
0x78: js 0x104a
0x78: mov eax, dword ptr [rcx]
0x78: ret
0x78: ret
0x78: ret
0x78: ret
=======================
0x79: jns 0x104a
0x79: mov eax, dword ptr [rcx]
0x79: ret
0x79: ret
0x79: ret
0x79: ret
=======================
0x7a: jp 0x104a
0x7a: mov eax, dword ptr [rcx]
0x7a: ret
0x7a: ret
0x7a: ret
0x7a: ret
=======================
0x7b: jnp 0x104a
0x7b: mov eax, dword ptr [rcx]
0x7b: ret
0x7b: ret
0x7b: ret
0x7b: ret
=======================
0x7c: jl 0x104a
0x7c: mov eax, dword ptr [rcx]
0x7c: ret
0x7c: ret
0x7c: ret
0x7c: ret
=======================
0x7d: jge 0x104a
0x7d: mov eax, dword ptr [rcx]
0x7d: ret
0x7d: ret
0x7d: ret
0x7d: ret
=======================
0x7e: jle 0x104a
0x7e: mov eax, dword ptr [rcx]
0x7e: ret
0x7e: ret
0x7e: ret
0x7e: ret
=======================
0x7f: jg 0x104a
0x7f: mov eax, dword ptr [rcx]
0x7f: ret
0x7f: ret
0x7f: ret
0x7f: ret
=======================
0x80: or byte ptr [rax - 0x75], 1
0x80: ret
0x80: ret
0x80: ret
0x80: ret
=======================
0x81: or dword ptr [rax - 0x75], 0xc3c3c301
0x81: ret
=======================
=======================
0x83: or dword ptr [rax - 0x75], 1
0x83: ret
0x83: ret
0x83: ret
0x83: ret
=======================
0x84: test byte ptr [rax - 0x75], cl
0x84: add ebx, eax
0x84: ret
0x84: ret
0x84: ret
=======================
0x85: test dword ptr [rax - 0x75], ecx
0x85: add ebx, eax
0x85: ret
0x85: ret
0x85: ret
=======================
0x86: xchg byte ptr [rax - 0x75], cl
0x86: add ebx, eax
0x86: ret
0x86: ret
0x86: ret
=======================
0x87: xchg dword ptr [rax - 0x75], ecx
0x87: add ebx, eax
0x87: ret
0x87: ret
0x87: ret
=======================
0x88: mov byte ptr [rax - 0x75], cl
0x88: add ebx, eax
0x88: ret
0x88: ret
0x88: ret
=======================
0x89: mov dword ptr [rax - 0x75], ecx
0x89: add ebx, eax
0x89: ret
0x89: ret
0x89: ret
=======================
0x8a: mov cl, byte ptr [rax - 0x75]
0x8a: add ebx, eax
0x8a: ret
0x8a: ret
0x8a: ret
=======================
0x8b: mov ecx, dword ptr [rax - 0x75]
0x8b: add ebx, eax
0x8b: ret
0x8b: ret
0x8b: ret
=======================
0x8c: mov word ptr [rax - 0x75], cs
0x8c: add ebx, eax
0x8c: ret
0x8c: ret
0x8c: ret
=======================
0x8d: lea ecx, [rax - 0x75]
0x8d: add ebx, eax
0x8d: ret
0x8d: ret
0x8d: ret
=======================
0x8e: mov cs, word ptr [rax - 0x75]
0x8e: add ebx, eax
0x8e: ret
0x8e: ret
0x8e: ret
=======================
=======================
0x90: nop
0x90: mov rax, qword ptr [rcx]
0x90: ret
0x90: ret
0x90: ret
0x90: ret
=======================
0x91: xchg eax, ecx
0x91: mov rax, qword ptr [rcx]
0x91: ret
0x91: ret
0x91: ret
0x91: ret
=======================
0x92: xchg eax, edx
0x92: mov rax, qword ptr [rcx]
0x92: ret
0x92: ret
0x92: ret
0x92: ret
=======================
0x93: xchg eax, ebx
0x93: mov rax, qword ptr [rcx]
0x93: ret
0x93: ret
0x93: ret
0x93: ret
=======================
0x94: xchg eax, esp
0x94: mov rax, qword ptr [rcx]
0x94: ret
0x94: ret
0x94: ret
0x94: ret
=======================
0x95: xchg eax, ebp
0x95: mov rax, qword ptr [rcx]
0x95: ret
0x95: ret
0x95: ret
0x95: ret
=======================
0x96: xchg eax, esi
0x96: mov rax, qword ptr [rcx]
0x96: ret
0x96: ret
0x96: ret
0x96: ret
=======================
0x97: xchg eax, edi
0x97: mov rax, qword ptr [rcx]
0x97: ret
0x97: ret
0x97: ret
0x97: ret
=======================
0x98: cwde
0x98: mov rax, qword ptr [rcx]
0x98: ret
0x98: ret
0x98: ret
0x98: ret
=======================
0x99: cdq
0x99: mov rax, qword ptr [rcx]
0x99: ret
0x99: ret
0x99: ret
0x99: ret
=======================
=======================
0x9b: wait
0x9b: mov rax, qword ptr [rcx]
0x9b: ret
0x9b: ret
0x9b: ret
0x9b: ret
=======================
0x9c: pushfq
0x9c: mov rax, qword ptr [rcx]
0x9c: ret
0x9c: ret
0x9c: ret
0x9c: ret
=======================
0x9d: popfq
0x9d: mov rax, qword ptr [rcx]
0x9d: ret
0x9d: ret
0x9d: ret
0x9d: ret
=======================
0x9e: sahf
0x9e: mov rax, qword ptr [rcx]
0x9e: ret
0x9e: ret
0x9e: ret
0x9e: ret
=======================
0x9f: lahf
0x9f: mov rax, qword ptr [rcx]
0x9f: ret
0x9f: ret
0x9f: ret
0x9f: ret
=======================
=======================
=======================
=======================
=======================
0xa4: movsb byte ptr [rdi], byte ptr [rsi]
0xa4: mov rax, qword ptr [rcx]
0xa4: ret
0xa4: ret
0xa4: ret
0xa4: ret
=======================
0xa5: movsd dword ptr [rdi], dword ptr [rsi]
0xa5: mov rax, qword ptr [rcx]
0xa5: ret
0xa5: ret
0xa5: ret
0xa5: ret
=======================
0xa6: cmpsb byte ptr [rsi], byte ptr [rdi]
0xa6: mov rax, qword ptr [rcx]
0xa6: ret
0xa6: ret
0xa6: ret
0xa6: ret
=======================
0xa7: cmpsd dword ptr [rsi], dword ptr [rdi]
0xa7: mov rax, qword ptr [rcx]
0xa7: ret
0xa7: ret
0xa7: ret
0xa7: ret
=======================
0xa8: test al, 0x48
0xa8: mov eax, dword ptr [rcx]
0xa8: ret
0xa8: ret
0xa8: ret
0xa8: ret
=======================
0xa9: test eax, 0xc3018b48
0xa9: ret
0xa9: ret
0xa9: ret
=======================
0xaa: stosb byte ptr [rdi], al
0xaa: mov rax, qword ptr [rcx]
0xaa: ret
0xaa: ret
0xaa: ret
0xaa: ret
=======================
0xab: stosd dword ptr [rdi], eax
0xab: mov rax, qword ptr [rcx]
0xab: ret
0xab: ret
0xab: ret
0xab: ret
=======================
0xac: lodsb al, byte ptr [rsi]
0xac: mov rax, qword ptr [rcx]
0xac: ret
0xac: ret
0xac: ret
0xac: ret
=======================
0xad: lodsd eax, dword ptr [rsi]
0xad: mov rax, qword ptr [rcx]
0xad: ret
0xad: ret
0xad: ret
0xad: ret
=======================
0xae: scasb al, byte ptr [rdi]
0xae: mov rax, qword ptr [rcx]
0xae: ret
0xae: ret
0xae: ret
0xae: ret
=======================
0xaf: scasd eax, dword ptr [rdi]
0xaf: mov rax, qword ptr [rcx]
0xaf: ret
0xaf: ret