-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disasm.asm
1453 lines (1448 loc) · 32 KB
/
Disasm.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
.MODEL Huge
MAX_LENGTH equ 255
READ_ONLY equ 0
NO_ATTRIBUTES equ 6
.STACK 100h
.DATA
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Input/Output;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
inputFile db 'CODE.COM', 0 ;Duomenu failo pavadinimas
outputFile db 'Assembly.asm', 0 ;Rezultato failo pavadinimas
inputHandle dw ? ;Duomenu failo deskriptorius
outputHandle dw ? ;Rezultatu failo deskriptorius
inputBuff db 6 dup(0) ;Duomenys paimti is duomenu failo
bufferPointer dw 6 ;Rodykle rodanti i inputBuff masyva (kuri elementa apdorosime)
InstructionPtr dw 100h ;IP
startingPtr dw 0 ;Ciklo pradzioje bufferPointer reiksme (=/= 0 tik tuo atveju, kai issenka duomenu failas)
baigesiFailas db 0 ;1 - Taip, 0 - Ne
duomSk dw 6 ;Kiek liko duomenu input buferyje (<6 tik tuo atveju, kai issenka duomenu failas)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Pagalbiniai masyvai;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ascii db 5 dup(0) ;Masyvas, i kuri ByteGetAscii procedura talpina rezultatus
number db 0 ;Atminties vieta naudojama ivairiomis situacijomis
currentSeg db 3 dup(0)
currentReg db 3 dup(0) ;Dabartine registro israiska simboliais (kuria greiciausiai spausdinsime i rezultatu faila)
db 10 dup(0) ;Paliekam vietos prefiksam
currentRm db 27 dup(0) ;Dabartine registro/atminties israiska simboliais (kuria greiciausiai spausdinsime i rezultatu faila)
currentData db 5 dup(0) ;Sesioliktainiai skaiciai isreiksti simboliai (Dazniausia naudojami betarpiskam operandui uzrasyti)
outputBuff db 60 dup(0) ;Buferis, paruostas spausdinimui i rezultatu faila
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Papildomi kintamieji;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
wordBit db ? ;w bito reiksme
directionBit db ? ;d bito reiksme
signBit db ? ;s bito reiksme
modValue db ? ;mod reiksme
regValue db ? ;reg reiksme
rmValue db ? ;rm reiksme
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Irasymui;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
registerArray db 'ALCLDLBLAHCHDHBHAXCXDXBXSPBPSIDI'
segmentArray db 'ESCSSSDS'
memoryArray1 db 'BX + SIBX + DIBP + SIBP + DI'
memoryArray2 db ' SIDIBPBX'
bytePtr db 'byte ptr '
wordPtr db 'word ptr '
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Klaidu pranesimai;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
noInputFile db 'Klaida: Nerastas duomenu failas$'
noOutputFile db 'Klaida: Negalima sukurti rezultatu failo$'
illegalSymbol db 'Klaida: Aptiktas neleistinas simbolis$'
;*******************************************************************************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CODE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;*******************************************************************************************************
LOCALS @@
.CODE
mov ax, @data
mov ds, ax
mov es, ax
call FailuIniciavimas
Disasembleris:
cmp baigesiFailas, 1
je Neskaityti
call Nuskaitymas
Neskaityti:
mov si, bufferPointer
mov startingPtr, si
call SegmentuPrefiksai
call OpkAtpazinimas
call Rasymas
call Isvalymas
mov si, bufferPointer ;Siuo metu bufferPointer rodo i
add instructionPtr, si ;instructionPtr rodys i instrukcijos baita
mov di, startingPtr
sub instructionPtr, di
cmp si, DuomSk ;Jeigu bufferPointer "uzbego uz akiu" duomenims (ju tiesiog nebeliko)
jb Disasembleris ;ir rodo i siuksle siuo momentu, tai reikia uzbaigti programa
Pabaiga:
mov ax, 4C00h
int 21h
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Klaidu pranesimai;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
KlaidaIllegalSymbol:
lea dx, illegalSymbol
jmp KlaidaPrint
KlaidaNoOutput:
lea dx, noOutputFile
jmp KlaidaPrint
KlaidaNoInput:
lea dx, noInputFile
KlaidaPrint:
mov ah, 09h
int 21h
jmp Pabaiga
;*******************************************************************************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;PROCEDUROS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;*******************************************************************************************************
FailuIniciavimas PROC
;Atidarome duomenu faila
lea dx, inputFile
mov al, READ_ONLY ;Tik skaitymui
mov ah, 3Dh
int 21h ;ax = file handle
jnc @@NoError
jmp KlaidaNoInput
@@NoError:
mov inputHandle, ax
;Sukuriame rezultatu faila
lea dx, outputFile
mov ah, 3Ch
mov cx, NO_ATTRIBUTES
int 21h
jnc @@NoError1
jmp KlaidaNoOutput
@@NoError1:
mov outputHandle, ax
ret
FailuIniciavimas ENDP
;************************************************************************************************************
Nuskaitymas PROC
mov cx, bufferPointer ;(1-6)
push cx
@@ciklas:
mov dx, 5
mov si, 0
@@cikle:
mov al, inputBuff[si + 1]
mov inputBuff[si], al
inc si
dec dx
jne @@cikle
loop @@ciklas
pop cx
mov dx, offset inputBuff
add dx, 6
sub dx, cx
mov bx, inputHandle
mov ah, 3Fh
int 21h
cmp ax, cx
jnb @@poSkaitymo
mov baigesiFailas, 1
mov duomSk, ax
sub duomSk, cx
add duomSk, 6
cmp duomSk, 0
je Pabaiga
@@poSkaitymo:
mov bufferPointer, 0
ret
Nuskaitymas ENDP
;************************************************************************************************************
SegmentuPrefiksai PROC
mov si, bufferPointer
mov al, byte ptr inputBuff[si]
cmp al, 26h
jne @@notES
inc bufferPointer
mov currentSeg[0], 'E'
mov currentSeg[1], 'S'
@@notES:
cmp al, 2Eh
jne @@notCS
inc bufferPointer
mov currentSeg[0], 'C'
mov currentSeg[1], 'S'
@@notCS:
cmp al, 36h
jne @@notSS
inc bufferPointer
mov currentSeg[0], 'S'
mov currentSeg[1], 'S'
@@notSS:
cmp al, 3Eh
jne @@notDS
inc bufferPointer
mov currentSeg[0], 'D'
mov currentSeg[1], 'S'
@@notDS:
ret
SegmentuPrefiksai ENDP
;************************************************************************************************************
OpkAtpazinimas proc near
;and funkcija padeda atpazinti operacijos koda (vienetukai - konstantos, nuliukai kintantys bitai[d, w, r/m, reg...])
mov si, bufferPointer
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi mov;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'M'
mov outputBuff[21], 'O'
mov outputBuff[22], 'V'
;mov 1 atvejis
and al, 11111100b
cmp al, 10001000b
jne @@mov1
call aritm1
ret
@@mov1:
mov ax, word ptr inputBuff[si]
;mov 2 atvejis
and al, 11111110b
cmp al, 11000110b
jne @@mov2
and ah, 00111000b
cmp ah, 00000000b
jne @@mov2
call mov2
ret
@@mov2:
mov ax, word ptr inputBuff[si]
;mov 3 atvejis
and al, 11110000b
cmp al, 10110000b
jne @@mov3
call mov3
ret
@@mov3:
mov ax, word ptr inputBuff[si]
;mov 4, 5 atvejai
and al, 11111100b
cmp al, 10100000b
jne @@mov45
call mov45
ret
@@mov45:
mov ax, word ptr inputBuff[si]
;mov 6, 7 atvejai
and al, 11111101b
cmp al, 10001100b
jne @@mov67
and ah, 00100000b
cmp ah, 00000000b
jne @@mov67
call mov67
ret
@@mov67:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi push;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'P'
mov outputBuff[21], 'U'
mov outputBuff[22], 'S'
mov outputBuff[23], 'H'
;push 1 atvejis
and al, 11111111b
cmp al, 11111111b
jne @@push1
and ah, 00111000b
cmp ah, 00110000b
jne @@push1
call pushPop1
ret
@@push1:
mov ax, word ptr inputBuff[si]
;push 2 atvejis
and al, 11111000b
cmp al, 01010000b
jne @@push2
call pushPop2
ret
@@push2:
mov ax, word ptr inputBuff[si]
;push 3 atvejis
and al, 11100111b
cmp al, 00000110b
jne @@push3
call pushPop3
ret
@@push3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi pop;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'P'
mov outputBuff[21], 'O'
mov outputBuff[22], 'P'
mov outputBuff[23], ' '
;pop 1 atvejis
cmp al, 10001111b
jne @@pop1
and ah, 00111000b
cmp ah, 00000000b
jne @@pop1
call pushPop1
ret
@@pop1:
mov ax, word ptr inputBuff[si]
;pop 2 atvejis
and al, 11111000b
cmp al, 01011000b
jne @@pop2
call pushPop2
ret
@@pop2:
mov ax, word ptr inputBuff[si]
;pop 3 atvejis
and al, 11100111b
cmp al, 00000111b
jne @@pop3
call pushPop3
ret
@@pop3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi add;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'A'
mov outputBuff[21], 'D'
mov outputBuff[22], 'D'
;add 1 atvejis
and al, 11111100b
cmp al, 00000000b
jne @@add1
call aritm1
ret
@@add1:
mov ax, word ptr inputBuff[si]
;add 2 atvejis
and al, 11111100b
cmp al, 10000000b
jne @@add2
and ah, 00111000b
cmp ah, 00000000b
jne @@add2
call aritm2
ret
@@add2:
mov ax, word ptr inputBuff[si]
;add 3 atvejis
and al, 11111110b
cmp al, 00000100b
jne @@add3
call aritm3
ret
@@add3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi inc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'I'
mov outputBuff[21], 'N'
mov outputBuff[22], 'C'
;inc 1 atvejis
and al, 11111110b
cmp al, 11111110b
jne @@inc1
and ah, 00111000b
cmp ah, 00000000b
jne @@inc1
call pushPop1
ret
@@inc1:
mov ax, word ptr inputBuff[si]
;inc 2 atvejis
and al, 11111000b
cmp al, 01000000b
jne @@inc2
call pushPop2
ret
@@inc2:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi sub;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'S'
mov outputBuff[21], 'U'
mov outputBuff[22], 'B'
;sub 1 atvejis
and al, 11111100b
cmp al, 00101000b
jne @@sub1
call aritm1
ret
@@sub1:
mov ax, word ptr inputBuff[si]
;sub 2 atvejis
and al, 11111100b
cmp al, 10000000b
jne @@sub2
and ah, 00111000b
cmp ah, 00101000b
jne @@sub2
call aritm2
ret
@@sub2:
mov ax, word ptr inputBuff[si]
;sub 3 atvejis
and al, 11111110b
cmp al, 00101100b
jne @@sub3
call aritm3
ret
@@sub3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi dec;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'D'
mov outputBuff[21], 'E'
mov outputBuff[22], 'C'
mov outputBuff[23], ' '
;dec 1 atvejis
and al, 11111110b
cmp al, 11111110b
jne @@dec1
and ah, 00111000b
cmp ah, 00001000b
jne @@dec1
call pushPop1
ret
@@dec1:
mov ax, word ptr inputBuff[si]
;dec 2 atvejis
and al, 11111000b
cmp al, 01001000b
jne @@dec2
call pushPop2
ret
@@dec2:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi cmp;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'C'
mov outputBuff[21], 'M'
mov outputBuff[22], 'P'
;cmp 1 atvejis
and al, 11111100b
cmp al, 00111000b
jne @@cmp1
call aritm1
ret
@@cmp1:
mov ax, word ptr inputBuff[si]
;cmp 2 atvejis
and al, 11111100b
cmp al, 10000000b
jne @@cmp2
and ah, 00111000b
cmp ah, 00111000b
jne @@cmp2
call aritm2
ret
@@cmp2:
mov ax, word ptr inputBuff[si]
;cmp 3 atvejis
and al, 11111110b
cmp al, 00111100b
jne @@cmp3
call aritm3
ret
@@cmp3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi and;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'A'
mov outputBuff[21], 'N'
mov outputBuff[22], 'D'
;and 1 atvejis
and al, 11111100b
cmp al, 00100000b
jne @@and1
call aritm1
ret
@@and1:
mov ax, word ptr inputBuff[si]
;and 2 atvejis
and al, 11111110b
cmp al, 10000000b
jne @@and2
and ah, 00111000b
cmp ah, 00100000b
jne @@and2
call aritm2
ret
@@and2:
mov ax, word ptr inputBuff[si]
;and 3 atvejis
and al, 11111110b
cmp al, 00100100b
jne @@and3
call aritm3
ret
@@and3:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Mul;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'M'
mov outputBuff[21], 'U'
mov outputBuff[22], 'L'
mov outputBuff[23], ' '
and al, 11111110b
cmp al, 11110110b
jne @@mul
and ah, 00111000b
cmp ah, 00100000b
jne @@mul
call pushPop1
ret
@@mul:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Div;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'D'
mov outputBuff[21], 'I'
mov outputBuff[22], 'V'
mov outputBuff[23], ' '
and al, 11111110b
cmp al, 11110110b
jne @@div
and ah, 00111000b
cmp ah, 00110000b
jne @@div
call pushPop1
ret
@@div:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi call;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'C'
mov outputBuff[21], 'A'
mov outputBuff[22], 'L'
mov outputBuff[23], 'L'
;call 1 atvejis
cmp al, 11101000b
jne @@call1
mov wordBit, 1
call callJmp1
ret
@@call1:
;call 2 atvejis
cmp al, 11111111b
jne @@call2
and ah, 00111000b
cmp ah, 00010000b
jne @@call2
call pushPop1
ret
@@call2:
mov ax, word ptr inputBuff[si]
;call 3 atvejis
cmp al, 10011010b
jne @@call3
call callJmp2
ret
@@call3:
;call 4 atvejis
cmp al, 11111111b
jne @@call4
and ah, 00111000b
cmp ah, 00011000b
jne @@call4
call callJmp3
ret
@@call4:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi jmp;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'J'
mov outputBuff[21], 'M'
mov outputBuff[22], 'P'
mov outputBuff[23], ' '
;jmp 1 atvejis
cmp al, 11101001b
jne @@jmp1
mov wordBit, 1
call callJmp1
ret
@@jmp1:
;jmp 2 atvejis
cmp al, 11101011b
jne @@jmp2
mov wordBit, 0
call callJmp1
ret
@@jmp2:
;jmp 3 atvejis
cmp al, 11111111b
jne @@jmp3
and ah, 00111000b
cmp ah, 00100000b
jne @@jmp3
call pushPop1
ret
@@jmp3:
mov ax, word ptr inputBuff[si]
;jmp 4 atvejis
cmp al, 11101010b
jne @@jmp4
call callJmp2
ret
@@jmp4:
;jmp 5 atvejis
cmp al, 11111111b
jne @@jmp5
and ah, 00111000b
cmp ah, 00101000b
jne @@jmp5
call callJmp3
ret
@@jmp5:
mov ax, word ptr inputBuff[si]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi ret;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'R'
mov outputBuff[21], 'E'
mov outputBuff[22], 'T'
mov outputBuff[23], ' '
;ret 1 atvejis
cmp al, 11000011b
jne @@ret1
inc bufferPointer
call CreateOutput1
mov outputBuff[23], 10
ret
@@ret1:
;ret 2 atvejis
cmp al, 11000010b
jne @@ret2
mov wordBit, 1
call IntRet
ret
@@ret2:
;ret 3 atvejis
mov outputBuff[20], 'R'
mov outputBuff[21], 'E'
mov outputBuff[22], 'T'
mov outputBuff[23], 'F'
cmp al, 11001011b
jne @@ret3
inc bufferPointer
call CreateOutput1
mov outputBuff[24], 10
ret
@@ret3:
;ret 4 atvejis
cmp al, 11001010b
jne @@ret4
mov wordBit, 1
call IntRet
ret
@@ret4:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Visi j**;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'J'
mov outputBuff[23], 0
mov wordBit, 0
;je atvejis
cmp al, 01110100b
jne @@je
mov outputBuff[21], 'E'
mov outputBuff[22], ' '
call callJmp1
ret
@@je:
;jl atvejis
cmp al, 01111100b
jne @@jl
mov outputBuff[21], 'L'
mov outputBuff[22], ' '
call callJmp1
ret
@@jl:
;jle atvejis
cmp al, 01111110b
jne @@jle
mov outputBuff[21], 'L'
mov outputBuff[22], 'E'
call callJmp1
ret
@@jle:
;jb atvejis
cmp al, 01110010b
jne @@jb
mov outputBuff[21], 'L'
mov outputBuff[22], ' '
call callJmp1
ret
@@jb:
;jbe atvejis
cmp al, 01110110b
jne @@jbe
mov outputBuff[21], 'B'
mov outputBuff[22], 'E'
call callJmp1
ret
@@jbe:
;jp atvejis
cmp al, 01111010b
jne @@jp
mov outputBuff[21], 'P'
mov outputBuff[22], ' '
call callJmp1
ret
@@jp:
;jo atvejis
cmp al, 01110000b
jne @@jo
mov outputBuff[21], 'O'
mov outputBuff[22], ' '
call callJmp1
ret
@@jo:
;js atvejis
cmp al, 01111000b
jne @@js
mov outputBuff[21], 'S'
mov outputBuff[22], ' '
call callJmp1
ret
@@js:
;jne atvejis
cmp al, 01110101b
jne @@jne
mov outputBuff[21], 'N'
mov outputBuff[22], 'E'
call callJmp1
ret
@@jne:
;jge atvejis
cmp al, 01111101b
jne @@jge
mov outputBuff[21], 'G'
mov outputBuff[22], 'E'
call callJmp1
ret
@@jge:
;jg atvejis
cmp al, 01111111b
jne @@jg
mov outputBuff[21], 'G'
mov outputBuff[22], ' '
call callJmp1
ret
@@jg:
;jae atvejis
cmp al, 01110011b
jne @@jae
mov outputBuff[21], 'A'
mov outputBuff[22], 'E'
call callJmp1
ret
@@jae:
;ja atvejis
cmp al, 01110111b
jne @@ja
mov outputBuff[21], 'A'
mov outputBuff[22], ' '
call callJmp1
ret
@@ja:
;jnp atvejis
cmp al, 01111011b
jne @@jnp
mov outputBuff[21], 'N'
mov outputBuff[22], 'P'
call callJmp1
ret
@@jnp:
;jno atvejis
cmp al, 01110001b
jne @@jno
mov outputBuff[21], 'N'
mov outputBuff[22], 'O'
call callJmp1
ret
@@jno:
;jns atvejis
cmp al, 01111001b
jne @@jns
mov outputBuff[21], 'N'
mov outputBuff[22], 'S'
call callJmp1
ret
@@jns:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Loop;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
cmp al, 11100010b
jne @@loop
mov outputBuff[20], 'L'
mov outputBuff[21], 'O'
mov outputBuff[22], 'O'
mov outputBuff[23], 'P'
mov wordBit, 0
call callJmp1
ret
@@loop:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Int;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mov outputBuff[20], 'I'
mov outputBuff[21], 'N'
mov outputBuff[22], 'T'
mov outputBuff[23], ' '
;int **h
cmp al, 11001101b
jne @@int
mov wordBit, 0
call IntRet
ret
@@int:
;int 03h
cmp al, 11001100b
jne @@int3
inc bufferPointer
call CreateOutput1
mov word ptr currentData, '30'
lea di, currentData
mov si, 0
mov bx, 24
call CreateOutput2
ret
@@int3:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
call neatpazintasOPK
ret
OpkAtpazinimas ENDP
;************************************************************************************************************
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VISU KOMANDU ATVEJAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;************************************************************************************************************
neatpazintasOPK PROC
mov outputBuff[20], 'D'
mov outputBuff[21], 'B'
mov wordBit, 0
call GetData
call CreateOutput1
mov bx, 22
mov si, 0
lea di, currentData
call CreateOutput2
ret
neatpazintasOPK ENDP
;************************************************************************************************************
;************************************************************************************************************
aritm1 PROC ;Naudojamas MOV, ADD, SUB ir CMP pirmiems atvejams
;Register <--> Register/Memory
call GetBitVariables ;Issifruojame bitus i d, w, mod, reg ir r/m reiksmes
call GetRegister ;Gaunamas registro operandas
call GetRm ;Gaunamas r/m operandas
call CreateOutput1 ;Irasoma IP reiksme ir naudojami baitai komandoje
mov bx, 23
cmp directionBit, 1
je @@direction
lea si, currentReg
lea di, currentRm
call createOutput2
ret
@@direction:
lea si, currentRm
lea di, currentReg
call CreateOutput2 ;Sukuriamas output bufferis
ret
aritm1 ENDP
;************************************************************************************************************
mov2 PROC
;Register/Memory <-- Immediate
call GetBitVariables
call GetRm
call GetData
call CreateOutput1
mov bx, 23
lea si, currentData
lea di, currentRm
call CreateOutput2
ret
mov2 ENDP
;************************************************************************************************************
mov3 PROC
;Register <-- Immediate
mov si, bufferPointer
mov ax, word ptr inputBuff[si]
and al, 00001000b
shr al, 3
mov wordBit, al
mov ax, word ptr inputBuff[si]
and al, 00000111b
mov regValue, al
inc bufferPointer
call GetRegister
call GetData
call CreateOutput1
mov bx, 23
lea si, currentData
lea di, currentReg
call createOutput2
ret
mov3 ENDP
;************************************************************************************************************
mov45 PROC
;Memory <--> Accumulator (AX/AL)
call GetBitVariables ;tik w ir d atitinka prasme ir mums yra aktualus
dec bufferPointer ;GetBitVariables vienu per daug padidino
mov regValue, 0
call GetRegister
mov modValue, 00b
mov rmValue, 110b
call GetRm
call CreateOutput1
mov bx, 23
cmp directionBit, 1
je @@direction
lea si, currentRm
lea di, currentReg
@@direction:
lea si, currentReg
lea di, currentRm
call CreateOutput2
ret
mov45 ENDP
;************************************************************************************************************
mov67 PROC
;Register/Memory <--> Segment Register
call GetBitVariables
mov wordBit, 1
call GetSegment
call GetRm
call CreateOutput1
cmp directionBit, 1
je @@direction
lea si, currentReg
lea di, currentRm
@@direction:
lea si, currentRm
lea di, currentReg
mov bx, 23
call CreateOutput2
ret
mov67 ENDP
;************************************************************************************************************
;************************************************************************************************************
pushPop1 PROC ;Taip pat naudojama daugelio kitu funkciju, turinciu adresavimo baitus ir viena operanda
;Register/Memory
call GetBitVariables
call GetRm
call CreateOutput1
mov bx, 24
mov si, 0 ;Nera antro operando
lea di, currentRm
call CreateOutput2
ret
pushPop1 ENDP
;************************************************************************************************************
pushPop2 PROC
;Register
mov si, bufferPointer
mov ax, word ptr inputBuff[si]
and al, 00000111b
mov regValue, al
inc bufferPointer
mov wordBit, 1
call GetRegister
call CreateOutput1
mov bx, 24
mov si, 0
lea di, currentReg
call CreateOutput2
ret
pushPop2 ENDP
;************************************************************************************************************
pushPop3 PROC
;Segment Register
mov si, bufferPointer
mov ax, word ptr inputBuff[si]
and al, 00011000b
shr al, 3
mov regValue, al
inc bufferPointer
call GetSegment
call CreateOutput1
mov bx, 24
mov si, 0
lea di, currentReg
call CreateOutput2
ret
pushPop3 ENDP
;************************************************************************************************************
;************************************************************************************************************
aritm2 PROC
;Immediate --> Register/Memory
call GetBitVariables ;signBit = directionBit (s-->d)
mov al, directionBit
mov signBit, al
call GetRm
call GetData
call CreateOutput1
mov bx, 23
lea si, currentData
lea di, currentRm
call CreateOutput2
ret
aritm2 ENDP
;************************************************************************************************************
aritm3 PROC
;Immediate --> Accumulator
mov si, bufferPointer
mov al, inputBuff[si]
and al, 00000001b
mov wordBit, al
inc bufferPointer
call GetRegister
call GetData
call CreateOutput1
mov bx, 23
lea si, currentData
lea di, currentReg
call CreateOutput2
ret
aritm3 ENDP
;************************************************************************************************************
callJmp1 PROC
;Direct Within Segment
inc bufferPointer
mov si, bufferPointer
mov ax, word ptr inputBuff[si]
inc bufferPointer
cmp wordBit, 1
je @@word
cbw
jmp @@afterWord
@@word:
inc bufferPointer
@@afterWord:
add ax, instructionPtr
add ax, bufferPointer
lea si, number
mov number, al
mov di, 2
call ByteGetAscii