-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathollydbg.lng
16429 lines (12322 loc) · 680 KB
/
ollydbg.lng
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
// OllyDbg v2.01 Korean Translation file
// Source URL: https://github.com/jeiea/OllyDbgKoLng/blob/master/ollydbg.lng?raw=true
EN English
KO Korean (한국어)
// ANALYSER:206
EN Analysing %s - $ - press SPACE to interrupt
KO %s 분석 중 - $ - 스페이스 키로 멈출 수 있습니다
// ANALYSER:227
EN Analysis interrupted
KO 분석을 중단했습니다
// ANALYSER:563
EN Low memory, analysis is not possible
KO 메모리가 부족해 분석할 수 없습니다
// ANALYSER:579
EN Module has empty code section
KO 모듈이 빈 코드 섹션을 가지고 있습니다
// ANALYSER:599
EN Compressed code?
KO 압축된 코드?
// ANALYSER:602
EN Quick statistical test of module '%s' reports that its code section is either compressed, encrypted, or contains large amount of embedded data. Do you want to analyze this code?
KO Quick statistical test of module '%s' reports that its code section is either compressed, encrypted, or contains large amount of embedded data. Do you want to analyze this code?
// ANALYSER:605
EN Packed or encrypted code, code is not analysed
KO Packed or encrypted code, code is not analysed
// ANALYSER:660
EN Struct 'IMAGE_IMPORT_DESCRIPTOR'
KO Struct 'IMAGE_IMPORT_DESCRIPTOR'
// ANALYSER:671
EN Invalid DLL name in Import Directory at %08X
KO Invalid DLL name in Import Directory at %08X
// ANALYSER:677
EN Import lookup table for '%.200S'
KO Import lookup table for '%.200S'
// ANALYSER:696
EN Invalid import name in ILT at %08X
KO Invalid import name in ILT at %08X
// ANALYSER:725
EN Struct 'IMAGE_EXPORT_DIRECTORY'
KO Struct 'IMAGE_EXPORT_DIRECTORY'
// ANALYSER:741
EN Original module name
KO Original module name
// ANALYSER:745
EN Invalid name of executable in Export Directory at %08X
KO Invalid name of executable in Export Directory at %08X
// ANALYSER:751
EN Export Address Table
KO Export Address Table
// ANALYSER:763
EN Export Name Pointer Table
KO Export Name Pointer Table
// ANALYSER:775
EN Invalid export name in Export Name Table at %08X
KO Invalid export name in Export Name Table at %08X
// ANALYSER:784
EN Export Ordinal Table
KO Export Ordinal Table
// ANALYSER:816
EN TLS callback function
KO TLS callback function
// ANALYSER:820
EN <TLSCallbacks>
KO <TLSCallbacks>
// ANALYSER:1283
EN Exception handler
KO Exception handler
// ANALYSER:2279
EN Invalid or unknown format of .NET structures
KO Invalid or unknown format of .NET structures
// ANALYSER:2597
EN Signature of __except_handler2
KO Signature of __except_handler2
// ANALYSER:2598
EN Signature of __except_handler3
KO Signature of __except_handler3
// ANALYSER:2765
EN Invalid command in sure code
KO Invalid command in sure code
// ANALYSER:2771
EN Command already decoded differently
KO Command already decoded differently
// ANALYSER:2787
EN Data already decoded as command%s
KO Data already decoded as command%s
// ANALYSER:2788
EN (self-modified code?)
KO (self-modified code?)
// ANALYSER:2831
EN Jump over immediate data
KO Jump over immediate data
// ANALYSER:3075
EN Fixup split between items
KO Fixup split between items
// ANALYSER:3761
EN Tricky pattern %i: %s
KO Tricky pattern %i: %s
// ANALYSER:4134
EN 1 library function from '%s'
KO 1 library function from '%s'
// ANALYSER:4137
EN %i library functions from '%s'
KO %i library functions from '%s'
// ANALYSER:4982
EN Low memory, switches are not analysed
KO Low memory, switches are not analysed
// ANALYSER:5439
EN Switch is too complex, some cases are lost
KO Switch is too complex, some cases are lost
// ANALYSER:6065
EN Low memory, unable to recognize procedures
KO Low memory, unable to recognize procedures
// ANALYSER:6223
EN Loop reserves %i. bytes on the stack
KO Loop reserves %i. bytes on the stack
// ANALYSER:6243
EN ESP may depend on execution path
KO ESP may depend on execution path
// ANALYSER:6284
EN <T%X> stack alignment
KO <T%X> stack alignment
// ANALYSER:6339
EN SE handling routine
KO SE handling routine
// ANALYSER:6345
EN Installs SE handler
KO Installs SE handler
// ANALYSER:6347
EN Installs SE handler <+%X>
KO Installs SE handler <+%X>
// ANALYSER:6383
EN Possible access to uninitialized part of stack (below ESP)
KO Possible access to uninitialized part of stack (below ESP)
// ANALYSER:6392
EN Possible manipulation of return address on the stack
KO Possible manipulation of return address on the stack
// ANALYSER:6665
EN Large structure passed on stack or ESP manipulated
KO Large structure passed on stack or ESP manipulated
// ANALYSER:6902
EN RET is used as a jump
KO RET is used as a jump
// ANALYSER:6904
EN Jump to <+%X>
KO Jump to <+%X>
// ANALYSER:7233
EN Allocates EAX bytes on stack
KO Allocates EAX bytes on stack
// ANALYSER:7235
EN Allocates %i. bytes on stack
KO Allocates %i. bytes on stack
// ANALYSER:7243
EN Probes EAX bytes on stack
KO Probes EAX bytes on stack
// ANALYSER:7245
EN Probes %i. bytes on stack
KO Probes %i. bytes on stack
// ANALYSER:7504
EN Low memory, unable to recognize loop variables
KO Low memory, unable to recognize loop variables
// ANALYSER:7979
EN Low memory, unable to save analysis data
KO Low memory, unable to save analysis data
// ANALYSER:8043
EN Analysing %s
KO Analysing %s
// ANALYSER:8045
EN Some static imports are not yet resolved
KO Some static imports are not yet resolved
// ANALYSER:8286
EN 1 %s procedure
KO 1 %s procedure
// ANALYSER:8287
EN fuzzy
KO fuzzy
// ANALYSER:8287
EN strict
KO strict
// ANALYSER:8288
EN %i %s procedures
KO %i %s procedures
// ANALYSER:8293
EN 1 call to known function
KO 1 call to known function
// ANALYSER:8295
EN %i calls to known functions
KO %i calls to known functions
// ANALYSER:8299
EN 1 call to known,
KO 1 call to known,
// ANALYSER:8300
EN %i calls to known,
KO %i calls to known,
// ANALYSER:8301
EN 1 call to guessed functions
KO 1 call to guessed functions
// ANALYSER:8302
EN %i calls to guessed functions
KO %i calls to guessed functions
// ANALYSER:8307
EN switch or cascaded IF
KO switch or cascaded IF
// ANALYSER:8307
EN switch
KO switch
// ANALYSER:8310
EN switches and cascaded IFs
KO switches and cascaded IFs
// ANALYSER:8310
EN switches
KO switches
// ANALYSER:8317
EN 1 loop
KO 1 loop
// ANALYSER:8319
EN %i loops
KO %i loops
// ANALYSER:8391
EN Low memory, automatic analysis not possible
KO Low memory, automatic analysis not possible
// ASSEMBLE:375
EN Only 32-bit registers can be scaled
KO Only 32-bit registers can be scaled
// ASSEMBLE:378
EN Expecting integer scale
KO Expecting integer scale
// ASSEMBLE:381
EN Zero scale is not allowed
KO Zero scale is not allowed
// ASSEMBLE:384
EN Invalid scale
KO Invalid scale
// ASSEMBLE:396
EN Use round parentheses, like ST(0)
KO Use round parentheses, like ST(0)
// ASSEMBLE:401
EN Expecting index of FPU register
KO Expecting index of FPU register
// ASSEMBLE:404
EN FPU register is out of range 0..7
KO FPU register is out of range 0..7
// ASSEMBLE:409
EN Expecting right parenthesis
KO Expecting right parenthesis
// ASSEMBLE:454
EN Duplicate SHORT specifier
KO Duplicate SHORT specifier
// ASSEMBLE:459
EN Duplicate LONG specifier
KO Duplicate LONG specifier
// ASSEMBLE:464
EN Duplicate NEAR specifier
KO Duplicate NEAR specifier
// ASSEMBLE:469
EN Duplicate FAR specifier
KO Duplicate FAR specifier
// ASSEMBLE:477
EN Conflicting SHORT and LONG specifiers
KO Conflicting SHORT and LONG specifiers
// ASSEMBLE:480
EN Conflicting NEAR and FAR specifiers
KO Conflicting NEAR and FAR specifiers
// ASSEMBLE:483
EN Conflicting SHORT and FAR specifiers
KO Conflicting SHORT and FAR specifiers
// ASSEMBLE:522
EN Immediate selector out of range
KO Immediate selector out of range
// ASSEMBLE:529
EN Unrecognized identifier
KO Unrecognized identifier
// ASSEMBLE:536
EN Unrecognized label
KO Unrecognized label
// ASSEMBLE:546
EN Expecting register name
KO Expecting register name
// ASSEMBLE:555
EN Invalid index register
KO Invalid index register
// ASSEMBLE:566
EN Expecting 32-bit register
KO Expecting 32-bit register
// ASSEMBLE:599
EN Floating-point numbers are not allowed
KO Floating-point numbers are not allowed
// ASSEMBLE:602
EN Invalid character
KO Invalid character
// ASSEMBLE:605
EN Syntax error
KO Syntax error
// ASSEMBLE:643
EN Expecting right bracket
KO Expecting right bracket
// ASSEMBLE:646
EN Missing or incomplete operand
KO Missing or incomplete operand
// ASSEMBLE:649
EN Incomplete operand
KO Incomplete operand
// ASSEMBLE:652
EN PTR applies only to memory
KO PTR applies only to memory
// ASSEMBLE:658
EN Can't declare size of ANY operand
KO Can't declare size of ANY operand
// ASSEMBLE:663
EN Invalid size of constant
KO Invalid size of constant
// ASSEMBLE:671
EN Can't index ANY address
KO Can't index ANY address
// ASSEMBLE:686
EN Offset out of allowed range
KO Offset out of allowed range
// ASSEMBLE:690
EN Can't scale 16-bit registers
KO Can't scale 16-bit registers
// ASSEMBLE:719
EN Invalid indexing mode
KO Invalid indexing mode
// ASSEMBLE:727
EN Imprecise form is not allowed
KO Imprecise form is not allowed
// ASSEMBLE:734
EN Can't get offset of register
KO Can't get offset of register
// ASSEMBLE:738
EN Don't declare size of register
KO Don't declare size of register
// ASSEMBLE:740
EN Place index registers into brackets
KO Place index registers into brackets
// ASSEMBLE:748
EN Mixed 16 and 32-bit registers
KO Mixed 16 and 32-bit registers
// ASSEMBLE:751
EN Can't subtract or negate register
KO Can't subtract or negate register
// ASSEMBLE:754
EN Can't OR register
KO Can't OR register
// ASSEMBLE:757
EN Missing comma or operation
KO Missing comma or operation
// ASSEMBLE:788
EN Illegal indexing register
KO Illegal indexing register
// ASSEMBLE:814
EN Expecting colon after segment register
KO Expecting colon after segment register
// ASSEMBLE:825
EN Misplaced segment override
KO Misplaced segment override
// ASSEMBLE:828
EN Can't get offset of address
KO Can't get offset of address
// ASSEMBLE:831
EN Duplicate segment override
KO Duplicate segment override
// ASSEMBLE:866
EN Illegal register
KO Illegal register
// ASSEMBLE:871
EN Misplaced data size declaration
KO Misplaced data size declaration
// ASSEMBLE:874
EN Duplicate data size declaration
KO Duplicate data size declaration
// ASSEMBLE:881
EN Misplaced address size declaration
KO Misplaced address size declaration
// ASSEMBLE:884
EN Conflicting address size declaration
KO Conflicting address size declaration
// ASSEMBLE:894
EN Conflicting OFFSET and PTR
KO Conflicting OFFSET and PTR
// ASSEMBLE:906
EN Misplaced jump size declaration
KO Misplaced jump size declaration
// ASSEMBLE:909
EN Conflicting OFFSET and jump size
KO Conflicting OFFSET and jump size
// ASSEMBLE:912
EN Duplicate jump size declaration
KO Duplicate jump size declaration
// ASSEMBLE:919
EN Misplaced OFFSET
KO Misplaced OFFSET
// ASSEMBLE:924
EN Duplicate OFFSET
KO Duplicate OFFSET
// ASSEMBLE:935
EN Arithmetic with undefined operand is meaningless
KO Arithmetic with undefined operand is meaningless
// ASSEMBLE:978
EN Immediate far address is not allowed
KO Immediate far address is not allowed
// ASSEMBLE:981
EN Conflicting jump size specifier
KO Conflicting jump size specifier
// ASSEMBLE:997
EN Expecting immediate constant
KO Expecting immediate constant
// ASSEMBLE:1005
EN Can't subtract expression in brackets
KO Can't subtract expression in brackets
// ASSEMBLE:1008
EN Can't OR expression in brackets
KO Can't OR expression in brackets
// ASSEMBLE:1011
EN Nested brackets
KO Nested brackets
// ASSEMBLE:1014
EN Conflicting OFFSET and memory address
KO Conflicting OFFSET and memory address
// ASSEMBLE:1022
EN Unmatched right bracket
KO Unmatched right bracket
// ASSEMBLE:1025
EN Expecting register or constant
KO Expecting register or constant
// ASSEMBLE:1028
EN Brackets must contain register or constant
KO Brackets must contain register or constant
// ASSEMBLE:1080
EN Invalid parameters
KO Invalid parameters
// ASSEMBLE:1154
EN Total size of the constant exceeds 16 bytes
KO Total size of the constant exceeds 16 bytes
// ASSEMBLE:1166
EN Integer constant must be 1, 2 or 4 bytes long
KO Integer constant must be 1, 2 or 4 bytes long
// ASSEMBLE:1182
EN Don't mix integer and floating constants
KO Don't mix integer and floating constants
// ASSEMBLE:1185
EN Floating constant must be 4, 8 or 10 bytes long
KO Floating constant must be 4, 8 or 10 bytes long
// ASSEMBLE:1208
EN Don't mix text and floating constants
KO Don't mix text and floating constants
// ASSEMBLE:1211
EN Character size must be 1 or 2 bytes
KO Character size must be 1 or 2 bytes
// ASSEMBLE:1214
EN Emptry string
KO Emptry string
// ASSEMBLE:1232
EN Invalid constant
KO Invalid constant
// ASSEMBLE:1248
EN Duplicated REP/REPE/REPNE prefix
KO Duplicated REP/REPE/REPNE prefix
// ASSEMBLE:1263
EN Duplicated LOCK prefix
KO Duplicated LOCK prefix
// ASSEMBLE:1268
EN Duplicated jump hint
KO Duplicated jump hint
// ASSEMBLE:1306
EN Command mnemonics expected
KO Command mnemonics expected
// ASSEMBLE:1332
EN HLA: right parenthesis expected
KO HLA: right parenthesis expected
// ASSEMBLE:1350
EN Invalid register operation
KO Invalid register operation
// ASSEMBLE:1353
EN Comma between operands expected
KO Comma between operands expected
// ASSEMBLE:1362
EN Too many operands
KO Too many operands
// ASSEMBLE:2091
EN Internal error: unknown operand type
KO Internal error: unknown operand type
// ASSEMBLE:2868
EN No room for all possible forms
KO No room for all possible forms
// ASSEMBLE:2878
EN Unknown command
KO Unknown command
// ASSEMBLE:2880
EN Implicit operand
KO Implicit operand
// ASSEMBLE:2882
EN Imprecise command
KO Imprecise command
// ASSEMBLE:2884
EN Command is a standalone prefix
KO Command is a standalone prefix
// ASSEMBLE:2886
EN LOCK is not allowed
KO LOCK is not allowed
// ASSEMBLE:2888
EN Jump hint is not allowed
KO Jump hint is not allowed
// ASSEMBLE:2890
EN Prefix is not allowed
KO Prefix is not allowed
// ASSEMBLE:2892
EN Please specify operand size
KO Please specify operand size
// ASSEMBLE:2894
EN Unsupported memory addressing mode
KO Unsupported memory addressing mode
// ASSEMBLE:2896
EN Conflicting data size
KO Conflicting data size
// ASSEMBLE:2898
EN Constant is out of range
KO Constant is out of range
// ASSEMBLE:2900
EN Destination is out of range
KO Destination is out of range
// ASSEMBLE:2902
EN Invalid segment register
KO Invalid segment register
// ASSEMBLE:2904
EN No match for specified operands
KO No match for specified operands
// ASSEMBLE:2906
EN Invalid operand size
KO Invalid operand size
// ASSEMBLE:2908
EN Invalid jump size specifier
KO Invalid jump size specifier
// ASSEMBLE:2910
EN Expecting memory operand
KO Expecting memory operand
// ASSEMBLE:2912
EN Expecting register
KO Expecting register
// ASSEMBLE:2914
EN Register is not allowed
KO Register is not allowed
// ASSEMBLE:2916
EN Wrong number of operands
KO Wrong number of operands
// ASSEMBLE:2918
EN REP prefix is not allowed
KO REP prefix is not allowed
// ASSEMBLE:2920
EN Undocumented command
KO Undocumented command
// ASSEMBLE:2922
EN Invalid command
KO Invalid command
// ASSEMBLE:2936
EN Extra characters on line
KO Extra characters on line
// ASSEMBLE:2983
EN Internal error
KO Internal error
// ASSEMBLE:2986
EN No room for assembled code
KO No room for assembled code
// BDISASM:1010
EN Backspace
KO Backspace
// BDISASM:1011
EN TAB
KO TAB
// BDISASM:1012
EN Line Feed
KO Line Feed
// BDISASM:1013
EN Form Feed
KO Form Feed
// BDISASM:1014
EN Carriage Return
KO Carriage Return
// BDISASM:1015
EN ESC
KO ESC
// BDISASM:1018
EN Char '%c'
KO Char '%c'
// BDISASM:1019
EN char '%c'
KO char '%c'
// BDISASM:1020
EN CHAR '%c'
KO CHAR '%c'
// BDISASM:1207
EN Stack address=
KO Stack address=
// BDISASM:1207
EN Address=
KO Address=
// BDISASM:1221
EN Top of stack
KO Top of stack
// BDISASM:1223
EN Stack
KO Stack
// BDISASM:2132
EN Dest
KO Dest
// BDISASM:2304
EN Imm
KO Imm
// BDISASM:2416
EN %08X (decimal %i.)
KO %08X (decimal %i.)
// BDISASM:2419
EN %08X (decimal %u.)
KO %08X (decimal %u.)
// BDISASM:2437
EN - jumps to
KO - jumps to
// BDISASM:2454
EN Top of stack =
KO Top of stack =
// BDISASM:2486
EN (decimal %i.)
KO (decimal %i.)
// BDISASM:2489
EN (decimal %u.)
KO (decimal %u.)
// BDISASM:2743
EN CONST
KO CONST
// BDISASM:2883
EN ??? (internal error)
KO ??? (internal error)
// BDISASM:2891
EN FLOAT
KO FLOAT
// BDISASM:4732
EN Command crosses end of memory block
KO Command crosses end of memory block
// BDISASM:4734
EN Illegal use of register
KO Illegal use of register
// BDISASM:4736
EN Memory address is not allowed
KO Memory address is not allowed
// BDISASM:4738
EN LOCK prefix is not allowed
KO LOCK prefix is not allowed
// BDISASM:4742
EN Two prefixes from the same group
KO Two prefixes from the same group
// BDISASM:4744
EN More than 4 prefixes
KO More than 4 prefixes
// BDISASM:4746
EN Invalid CR register
KO Invalid CR register
// BDISASM:4748
EN Internal OllyDbg error
KO Internal OllyDbg error
// BDISASM:4750
EN Superfluous operand size prefix
KO Superfluous operand size prefix
// BDISASM:4752
EN Superfluous address size prefix
KO Superfluous address size prefix
// BDISASM:4754
EN Superfluous segment override prefix
KO Superfluous segment override prefix
// BDISASM:4756
EN Superfluous REPxx prefix
KO Superfluous REPxx prefix
// BDISASM:4758
EN Default segment register in prefix
KO Default segment register in prefix
// BDISASM:4760
EN 16-bit return
KO 16-bit return
// BDISASM:4762
EN 16-bit jump or call
KO 16-bit jump or call
// BDISASM:4764
EN Far jump or call
KO Far jump or call
// BDISASM:4766
EN Modification of segment register
KO Modification of segment register
// BDISASM:4768
EN Privileged instruction
KO Privileged instruction
// BDISASM:4770
EN I/O command
KO I/O command
// BDISASM:4772
EN Shift out of range
KO Shift out of range
// BDISASM:4774
EN Command uses (valid) LOCK prefix
KO Command uses (valid) LOCK prefix
// BDISASM:4776
EN Unaligned stack operation
KO Unaligned stack operation
// BDISASM:4778
EN Suspicious use of stack pointer
KO Suspicious use of stack pointer
// BDISASM:4780
EN Undocumented instruction or encoding
KO Undocumented instruction or encoding
// BPHARD:378
EN Delete
KO Delete
// BPHARD:378
EN Delete hardware breakpoint
KO Delete hardware breakpoint
// BPHARD:380
EN Disable
KO Disable
// BPHARD:381
EN Disable breakpoint but don't remove it from the list
KO Disable breakpoint but don't remove it from the list
// BPHARD:383
EN Enable
KO Enable
// BPHARD:383
EN Re-enable hardware breakpoint
KO Re-enable hardware breakpoint
// BPHARD:385
EN Edit properties...
KO Edit properties...
// BPHARD:385
EN Edit properties of the selected breakpoint
KO Edit properties of the selected breakpoint
// BPHARD:387
EN Follow in Disassembler
KO Follow in Disassembler
// BPHARD:387
EN Follow breakpoint in CPU Disassembler
KO Follow breakpoint in CPU Disassembler
// BPHARD:389
EN Follow in Dump
KO 덤프 창에서 보기
// BPHARD:389
EN Follow breakpoint in CPU Dump pane
KO Follow breakpoint in CPU Dump pane
// BPHARD:391
EN Disable all
KO Disable all
// BPHARD:391
EN Disable all hardware breakpoints
KO Disable all hardware breakpoints
// BPHARD:393
EN Enable all