-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.asm
More file actions
2249 lines (1558 loc) · 51.8 KB
/
main.asm
File metadata and controls
2249 lines (1558 loc) · 51.8 KB
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
data segment
; Constants
;binome: Oussama BOUSSAHLA
; Labadi HARETH
calculator dw 0dh, 0ah, " .__ .__ __ ", 0dh, 0ah, " ____ _____ | | ____ __ __| | _____ _/ |_ ___________ ", 0dh, 0ah, "_/ ___\\__ \ | | _/ ___\| | \ | \__ \\ __\/ _ \_ __ \", 0dh, 0ah, "\ \___ / __ \| |_\ \___| | / |__/ __ \| | ( <_> ) | \/", 0dh, 0ah, " \___ >____ /____/\___ >____/|____(____ /__| \____/|__| ", 0dh, 0ah, " \/ \/ \/ \/ ", 0dh, 0ah, 0dh, 0ah, " Created by: BOUSSAHLA Oussama", 0dh, 0ah, " LABADI Hareth", 0dh, 0ah, "$"
msg_wlc db 0dh, 0ah, 0dh, 0ah, ":> Welcome to our calculator program!",0dh,0ah,0dh,0ah,0dh,0ah,"Our calculator supports arithmetic operations in base 2, 10, and 16.",0dh,0ah,0dh,0ah,"$"
msg_base db 0dh, 0ah,0dh, 0ah, "Please, select the base for your operands and results using the following commands:",0dh,0ah, 0dh,0ah,"- Enter 'b' to use base 2 (binary)", 0dh,0ah, "- Enter 'd' to use base 10 (decimal)", 0dh,0ah,"- Enter 'h' to use base 16 (hexadecimal)", 0dh,0ah, "$"
base10 db 0dh,0ah, 0dh,0ah, 'Your operations will be in base 10 $'
base2 db 0dh,0ah, 0dh,0ah, 'Your operations will be in base 2 $'
base16 db 0dh,0ah, 0dh,0ah, "Your operations will be in base 16 $"
msg_cpsL db 0dh, 0ah, 0dh,0ah, 0ah, 0dh, '<!> Important: Please turn on Caps Lock to use base 16 correctly $'
msg_op db 0dh,0ah,0dh,0ah,'Please, Enter the operation (+, -, *, or /): $'
msg1_2 db 0dh, 0ah, 0dh, 0ah, 'Enter the first binary number ( max 16-digits ) : $'
msg2_2 db 0dh, 0ah, 0dh, 0ah, 'Enter the second binary number ( max 16-digits ) : $'
msg1_10 db 0dh, 0ah, 0dh, 0ah,'Enter the first decimal number ( max 5-digits < 65535 ) : $'
msg2_10 db 0dh, 0ah, 0dh, 0ah, 'Enter the second decimal number ( max 5-digits <65535 ) : $'
msg_Of_10 db 0dh, 0ah, 0dh, 0ah, "<!> Warning: The decimal number must be lower then or equal 65535 else your results will be overflowed", 0dh, 0ah, "$"
msg1_16 db 0dh, 0ah, 0dh, 0ah,'Enter the first hexadecimal number (max 4-digits in upper case only): $'
msg2_16 db 0dh, 0ah,'Enter the second hexadecimal number (max 4-digits in upper case only): $'
msg_rslt db 0dh, 0ah, 0dh, 0ah, 'Operation result: $'
msg_rtr db 0dh, 0ah, 0dh, 0ah, "- For another operation in this base press the key 's' -> same", 0dh, 0ah,"- For another operation in anoter base press the key 'o' -> other", 0dh, 0ah,"- Press any other key to exit", 0dh, 0ah, "$"
msg_exit db 0dh,0ah ,'thank you for using the calculator! :> ', 0Dh,0Ah, '$'
msg_err db 0dh, 0ah, ':< Error: Invalid input!', 0dh, 0ah, '$'
msg_Div0 db 0dh, 0ah, 0dh, 0ah, ":< Division Error, second operand couldn't be 0 $"
msg_of db 0dh, 0ah, 0dh, 0ah, ' <!> warning: result overflow $'
; Variables
base db 0
sign db 0
caseOP db 1
isER db 'f'
op1 dw 0
op2 dw 0
bool db 0
cnt db 5
data ends
; Code segment
code segment
assume cs:code, ds:data
; Main program
start:
mov ax, data
mov ds, ax
;the word calculator
mov ah, 9h
lea dx, calculator
int 21h
call delay
call delay
; Welcome and ask for base
mov ah, 09h
lea dx, msg_wlc
int 21h
readB: ; Read base from input
call read_base
cmp [base], 'b'
jz base_2
cmp [base], 'd'
jz base_10
cmp [base], 'h'
jz base_16
;=============================================================================================
base_2:
bin_op:
;reading and dispalying the operation
call read_sign
;ferifying the operation
cmp al,'+'
je add_2
cmp al,'*'
je mul_2
cmp al,'-'
je sub_2
cmp al,'/'
je div_2
add_2:
in1_2_add:
cmp [isER], 't'
jnz cnt_add_2_1
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_add_2_1:
;display the message to read the first term
mov [caseOP], 1
mov ah,09h
lea dx, msg1_2
int 21h
;read the input
call InputNo_2
;store the result in op1 for display
mov [op1], bx
;store the op1 in stack for calcultions
push bx
in2_2_add:
cmp [isER], 't'
jnz cnt_add_2_2
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_add_2_2:
;display the message to read the second term
mov [caseOP], 2
mov ah,9h
lea dx, msg2_2
int 21h
;read the input
call InputNo_2
;store the result in op2 for display
mov [op2], bx
;get the first operand
pop dx
;executing the operation (addition) and puting the rslt in dx
add dx,op2
;check for overflow
call DispOvflow
;storing the rslt in stack
push dx
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the op1
mov bx, op1
call view_2
;display the sign
mov ah, 2h
mov dx, '+'
int 21h
;display the op2
mov bx, op2
call view_2
;display equals
mov ah, 02h
mov dx, '='
int 21h
;display the result
pop bx
call view_2
;display choices
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 0h
int 16h
cmp al, 's'
jz bin_op
cmp al, 'o'
jz readB
jmp exit
sub_2:
in1_2_sub:
cmp [isER], 't'
jnz cnt_sub_2_1
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_sub_2_1:
;display the message to read the first term
mov [caseOP], 1
mov ah,09h
lea dx, msg1_2
int 21h
;read the input
call InputNo_2
;store the result in op1 for display
mov [op1], bx
;store the result in stack for calcultions
push bx
in2_2_sub:
cmp [isER], 't'
jnz cnt_sub_2_2
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_sub_2_2:
;display the message to read the second term
mov [caseOP], 2
mov ah,9h
lea dx, msg2_2
int 21h
;read the input
call InputNo_2
;store the result in op2 for display
mov [op2], bx
;get the first operand
pop dx
;executing the operation (substraction) and puting the rslt in dx
sub dx,[op2]
;check for overflow
call DispOvflow
;storing the rslt in stack
push dx
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the op1
mov bx, op1
call view_2
mov ah, 2h
mov dx, '-'
int 21h
;display the op2
mov bx, op2
call view_2
mov ah, 02h
mov dx, '='
int 21h
;display the result
pop bx
call view_2
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 0h
int 16h
cmp al, 's'
jz bin_op
cmp al, 'o'
jz readB
jmp exit
mul_2:
in1_2_mul:
cmp [isER], 't'
jnz cnt_mul_2_1
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_mul_2_1:
;display the message to read the first term
mov [caseOP], 1
mov ah,09h
lea dx, msg1_2
int 21h
;read the input
call InputNo_2
;store the result in op1 for display
mov [op1], bx
;store the result in stack for calcultions
push bx
in2_2_mul:
cmp [isER], 't'
jnz cnt_mul_2_2
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_mul_2_2:
;display the message to read the second term
mov [caseOP], 2
mov ah,9h
lea dx, msg2_2
int 21h
;read the input
call InputNo_2
;store the result in op2 for display
mov [op2], bx
pop ax
;executing the operation (multiplication) and puting the rslt in dx
mul bx
call DispOvflow_mul
;storing the rslt in stack
push ax
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the op1
mov bx, op1
call view_2
mov ah, 2h
mov dx, '*'
int 21h
;display the op2
mov bx, op2
call view_2
mov ah, 02h
mov dx, '='
int 21h
;display the result
pop bx
call view_2
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 1h
int 21h
cmp al, 's'
jz bin_op
cmp al, 'o'
jz readB
jmp exit
div_2:
in1_2_div:
cmp [isER], 't'
jnz cnt_div_2_1
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_div_2_1:
;display the message to read the first term
mov [caseOP], 1
mov ah,09h
lea dx, msg1_2
int 21h
;read the input
call InputNo_2
;store the result in op1 for display
mov [op1], bx
;store the result in stack for calcultions
push bx
in2_2_div:
cmp [isER], 't'
jnz cnt_div_2_2
;return the adress of the error procedure in case of error
pop dx
pop dx
cnt_div_2_2:
;display the message to read the second term
mov [caseOP], 2
mov ah,9h
lea dx, msg2_2
int 21h
;read the input
call InputNo_2
;store the result in op2 for display
mov [op2], bx
cmp bx, 0
;verify division over 0
jne Cte_2
call DispDiv0
jmp cnt_div_2_2
;get the op1
Cte_2: pop ax
;clear dx=0 to avoid overflow
mov dx, 0h
;executing the operation (divison) and puting the rslt in dx
div bx
;storing the rslt in stack
push ax
call DispOvflow_mul
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the op1
mov bx, op1
call view_2
mov ah, 2h
mov dx, '/'
int 21h
;display the op2
mov bx, op2
call view_2
mov ah, 02h
mov dx, '='
int 21h
pop ax
;display the result
mov bx, ax
call view_2
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 1h
int 21h
cmp al, 's'
jz bin_op
cmp al, 'o'
jz readB
jmp exit
InputNo_2:
;cleaning bx
mov bx, 0
;initialize loop counter
mov cx, 16
readC:
;set input function to read a charachter
mov ah, 1
;read a character
int 21h
;verify if the input is 0, 1 or odh else repeat reading
call err_2
; compare AL with CR
cmp al, 0dh
;if it is binary we prepare it for calculation (shifting)
jne biForm
jmp end_readC
; convert ascii into decimal code by removing 30
biForm:and ax, 000FH
shl bx, 1
;add the bit uising bit level (conversion from binary to hexa level)
or bx, ax
loop readC
end_readC:
ret
;procedure to display a binary number
view_2:
; initialize loop counter
mov cx, 16
mov ah, 2h
putC:
; shift BL towards left by 1 position
shl bx, 1
; jump to label @ONE if CF=1
jc one
; set dl=0 else
mov dl, 30H
cmp bool, 0
je loop_putC
jmp display_2
; set DL=1
one: mov dl, 31H
mov bool, 1
display_2:
; print the character
int 21H
loop_putC:
loop putC
mov bool, 0
ret
;=============================================================================================
base_10:
dec_op:
;reading and dispalying the operation
call read_sign
;verifying the operation
cmp al,'+'
je add_10
cmp al,'*'
je mul_10
cmp al,'-'
je sub_10
cmp al,'/'
je div_10
add_10:
;display the message to read the first term
in1_10_add:
cmp [isER], 't'
jnz cnt_add_10_1
pop dx ;return the adress of the error procedure in case of error
cnt_add_10_1:
mov [caseOP], 1
mov ah,09h
lea dx, msg1_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read the first term (num per num)
call InputNo_10 ;the input result (our num) is in dx
mov [op1], dx
;display the message to read the second term
in2_10_add:
cmp [isER], 't'
jnz cnt_add_10_2
pop dx ;return the adress of the error procedure in case of error
cnt_add_10_2:
mov [caseOP], 2
mov ah,9h
lea dx, msg2_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read one num separatly
call InputNo_10 ;the input result (our num) is in dx
mov [op2], dx
;executing the operation (addition) and puting the rslt in dx
add dx,op1
call DispOvflow
;storing the rslt in stack
push dx
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the op1
mov dx, op1
mov cx,10000
call View_10
;display the sign
mov ah, 2h
mov dx, '+'
int 21h
;display op2
mov dx, op2
mov cx,10000
call View_10
mov ah, 02h
mov dx, '='
int 21h
;display result
mov cx, 10000
pop dx
call View_10
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 0h
int 16h
cmp al, 's'
jz dec_op
cmp al, 'o'
jz readB
jmp exit
sub_10:
in1_10_sub:
;display the message to read the first term
cmp [isER], 't'
jnz cnt_sub_10_1
pop dx ;return the adress of the error procedure in case of error
cnt_sub_10_1:
mov [caseOP], 1
mov ah,09h
lea dx, msg1_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read the first term (num per num)
call InputNo_10 ;the input result (our num) is in dx
mov [op1], dx
push dx
;display the message to read the second term
in2_10_sub:
cmp [isER], 't'
jnz cnt_sub_10_2
pop dx ;return the adress of the error procedure in case of error
cnt_sub_10_2:
mov [caseOP], 2
mov ah,9h
lea dx, msg2_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read one num separatly
call InputNo_10 ;the input result (our num) is in dx
mov [op2], dx
pop dx ;;get op1 and put it in dx
;executing the operation (substraction) and puting the rslt in dx
sub dx,[op2]
call DispOvflow
;storing the rslt in stack
push dx
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
mov dx, op1
mov cx,10000
call View_10
mov ah, 2h
mov dx, '-'
int 21h
mov dx, op2
mov cx,10000
call View_10
mov ah, 02h
mov dx, '='
int 21h
mov cx, 10000
pop dx
call View_10
mov ah, 9h
lea dx, msg_rtr
int 21h
mov ah, 0h
int 16h
cmp al, 's'
jz dec_op
cmp al, 'o'
jz readB
jmp exit
mul_10:
in1_10_mul:
;display the message to read the first term
cmp [isER], 't'
jnz cnt_mul_10_1
pop dx ;return the adress of the error procedure in case of error
cnt_mul_10_1:
mov [caseOP], 1
mov ah,09h
lea dx, msg1_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read the first term (num per num)
call InputNo_10 ;the input result (our num) is in dx
mov [op1], dx
;display the message to read the second term
in2_10_mul:
cmp [isER], 't'
jnz cnt_mul_10_2
pop dx ;return the adress of the error procedure in case of error
cnt_mul_10_2:
mov [caseOP], 2
mov ah,9h
lea dx, msg2_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read one num separatly
call InputNo_10 ;the input result (our num) is in dx
mov [op2], dx
;putting the second operator in the accumulator
mov ax, [op2]
;executing the operation (multiplication) and puting the rslt in dx
mul [op1]
call DispOvflow_mul
;storing the rslt in stack
push ax
;display the rslt message
mov ah,9
lea dx, msg_rslt
int 21h
;display the first term
mov dx, op1
mov cx,10000
call View_10
;display the sign
mov ah, 2h
mov dx, '*'
int 21h
;display the second term
mov dx, op2
mov cx,10000
call View_10
;display '='
mov ah, 02h
mov dx, '='
int 21h
;display the result
mov cx, 10000
pop dx
call View_10
;display the message to repeat the operations
mov ah, 9h
lea dx, msg_rtr
int 21h
;reading the answer
mov ah, 0h
int 16h
;still at the same base
cmp al, 's'
jz dec_op
;go to another base
cmp al, 'o'
jz readB
jmp exit
div_10:
in1_10_div:
;display the message to read the first term
cmp [isER], 't'
jnz cnt_div_10_1
pop dx ;return the adress of the error procedure in case of error
cnt_div_10_1:
mov [caseOP], 1
mov ah,09h
lea dx, msg1_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read the first term (num per num)
call InputNo_10 ;the input result (our num) is in dx
mov [op1], dx
;display the message to read the second term
in2_10_div:
cmp [isER], 't'
jnz cnt_div_10_2
pop dx ;return the adress of the error procedure in case of error
cnt_div_10_2:
mov [caseOP], 2
mov ah,9h
lea dx, msg2_10
int 21h
;intialize cx to 0, it will be incremented in InputNo
mov cx,0h
;calling InputNp that read one num separatly
call InputNo_10 ;the input result (our num) is in dx
cmp dx, 0
;verify division over 0
jne Cte_10
call DispDiv0
jmp cnt_div_10_2
cte_10: mov [op2], dx
mov cx, [op2] ;; or dx
;clearing dx before the division it will be considered as part of the dividend
xor dx, dx
;putting the second operator in the accumulator
mov ax, [op1]
;executing the operation (division) and puting the rslt in dx
div [op2]
call DispOvflow_mul
;storing the rslt in stack
push ax