forked from wine99/calculator-masm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal.asm
846 lines (740 loc) · 19.2 KB
/
cal.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
;硬件工程师综合训练,课题五,最终版代码
code segment
assume cs:code
org 1200h
start:
jmp true_start
; 中断控制器 8259
; 8259只处理来自8253的计时中断
port59_0 equ 0ffe4h
port59_1 equ 0ffe5h
icw1 equ 13H ; 边沿触发
icw2 equ 08h ; 中断类型号 08H 09H ...
icw4 equ 09h ; 全嵌套,缓冲从片,非自动EOI,8086/88模式
ocw1open equ 0feh ; IRQ0,类型号为08h
vectorOffset EQU 20H ; 中断向量的地址 08H*4=20H
vectorSeg EQU 22H ; 中断向量的CS段地址在中断向量表中的地址,值为0
; 并行接口芯片 8255
; 8255向led灯输出led状态
port55_a equ 0ffd8H
port55_ctrl equ 0ffdBH
; 计数定时芯片 8253
port53_0 equ 0ffe0H
port53_ctrl equ 0ffe3H ; 控制口
count53_second1 equ 19200 ; 1s计数次数 T7=19.2KHz Tn=4.9152MHz/2^n
count53_second2 equ 38400 ; 2s计数次数
ledbuf db 6 dup(?) ;存放六个八段数码管的显示码
led_count db 0 ;当前已经输入了几位数字
previous_key db 20h ;上一个按下的按键
current_key db 20h ;当前按下的按键
has_previous_bracket db 0 ;是否前面有左括号
has_right_bracket db 0 ;前一个输入符号是否是右括号
same_as_pre db 0 ;当前按下按键和上一按下按键是否相同
operator_stack db '#', 100 dup(?) ; 运算符栈,以si为栈顶指针
operand_stack db 0ffh, 0ffh, 100 dup(?) ; 操作数栈,以di为栈顶指针
priority db 0 ; 运算符之间的优先级,0表示栈顶<下一个; 1 =; 2 >
is_save_num db 0 ; 当按下一个运算符时,current_num是否已经保存,为了处理连续输入运算符号的错误情况
current_num dw 0 ; 当前已经输入的数字
display_num dw 0 ; 当前药展示的数字,按下符号后,会把current_num清零,但不把display_num清零
has_input_e db 0 ; 统计是否已经按下过e键
result dw 0 ; 总的计算结果
overflow db 0 ; 计算结果溢出标志
whole_error db 0 ; 计算结果出错标志
; # ( +- * 优先级从小到大
; # ( + - *
; # f 0 0 0 0
; ( f f 0 0 0
; + 2 2 1 1 0
; - 2 2 1 1 0
; * 2 2 2 2 1
priority_table db 0ffh, 0, 0, 0, 0
db 0ffh, 0ffh, 0, 0, 0
db 2, 2, 1, 1, 0
db 2, 2, 1, 1, 0
db 2, 2, 2, 2, 1
OUTSEG equ 0ffdch ;段控制口
OUTBIT equ 0ffddh ;位控制口/键扫口
IN_KEY equ 0ffdeh ;键盘读入口
LightOnGreen EQU 0edh ;绿灯 1110 1101 按照题目例子中给的接线方式接线
LightOnRed EQU 0feh ;红灯 1111 1110
lightOff EQU 0FFH; 关灯 1111 1111
flag db 0 ;灯是否在亮
true_start:
cli
call init_all
main:
call get_key ; 获取当前输入符号
cmp current_key, 20h
je handle
and al,0fh
handle:
call handle_key ; 对输入符号进行处理
call disp ; 对八段数码管进行一次显示
jmp main
init_all proc
call init8259
call init8255
call init8253
call initVector
call clean_all
ret
init_all endp
init8259 proc
push ax
push dx
mov dx, port59_0
mov al, icw1
out dx, al
mov dx, port59_1
mov al, icw2
mov dx, port59_1
out dx, al
mov al, icw4
out dx, al
mov al, ocw1open
out dx, al
pop dx
pop ax
ret
init8259 endp
init8255 proc
push ax
push dx
mov dx, port55_ctrl
mov al, 88H ;8255A控制字88H,使AB端口均为输出口,C口高位输入,低位输出,且全部工作在方式0下
out dx, al
mov al, lightOff
mov dx, port55_a
out dx, al
pop dx
pop ax
ret
init8255 endp
init8253 proc
push dx
push ax
mov dx, port53_ctrl
mov al, 36H ; 计数器0,先低8位,再高8位,方式3,二进制计数
out dx, al
pop ax
pop dx
ret
init8253 endp
init_stack proc
mov si, 0
mov di, 0
ret
init_stack endp
initVector proc
cli
Push bx
Push ax
Mov ax , offset flash ;中断向量表的初始化
Mov bx , vectorOffset
Mov [bx] , ax
mov bx,vectorSeg ;中断向量的段地址对应的中断向量表的地址
mov ax,0000H
mov [bx],ax
Pop ax
Pop bx
sti
Ret
initVector endp
clean_all proc
cli
call init_stack
call clean_led
call ProcTurnOff
mov previous_key, 20h
mov current_key, 20h
mov led_count, 0
mov has_previous_bracket, 0
mov has_right_bracket, 0
mov same_as_pre, 0
mov current_num, 0
mov display_num, 0
mov result, 0
mov overflow, 0
mov is_save_num, 0
mov whole_error, 0
mov has_input_e, 0
ret
clean_all endp
clean_led proc
mov LedBuf+0,0ffh
mov LedBuf+1,0ffh
mov LedBuf+2,0ffh
mov LedBuf+3,0c0h
mov LedBuf+4,0ffh
mov LedBuf+5,0ffh
ret
clean_led endp
;---------------中断服务程序---------------------
flash proc
cli ;关中断
test flag,1 ;判断当前灯是否亮
Jz turnOn ;不亮则开灯
;TurnOff
call ProcTurnOff ;亮灯则关上
Jmp flashOK
turnOn:
call ProcTurnOn
flashOK:
; call ProcWriteCount;重新计数
mov dx,port59_0
mov al,20h ;0010 0000 普通EOI方式 OCW2
out dx,al
STI ;开中断
IRET
flash endp
ProcTurnOn proc
; 点亮二极管
push dx
push ax
Mov dx, Port55_A
test result,1h ;判断是否是奇数
jz green ;是偶数则亮绿灯
mov al, LightOnRed
jmp rgOk
green:
mov al, LightOnGreen
rgOk:
Out dx, al
mov flag,1
pop ax
pop dx
ret
ProcTurnOn endp
ProcTurnOff proc
; 熄灭二极管
push dx
push ax
Mov dx, Port55_A
Mov al, lightOff
Out dx, al
mov flag,0
pop ax
pop dx
ret
ProcTurnOff endp
ProcWriteCount proc
; 写入计数初值
mov dx, port53_0 ;第一个计数器通道的端口地址
test result,1h ;判断result是否为奇数
jz second2
mov ax,count53_second1 ;如果是奇数,则写入计数初值1s
jmp countSetOK
second2:
mov ax,count53_second2
countSetOK:
out dx,al ;先写低8位,再读写高八位,方式3,二进制计数
mov al,ah
out dx,al
ret
ProcWriteCount endp
get_key proc ;键扫子程序
; store key in current_key
push ax
push bx
push cx
push dx
mov al, current_key ;上一次扫描的符号
mov previous_key, al
mov al,0ffh ;关显示口
mov dx,OUTSEG
out dx,al
mov bl,0
mov ah,0feh
mov cx,8
key1:
mov al,ah
mov dx,OUTBIT
out dx,al
shl al,1
mov ah,al
nop
nop
nop
nop
nop
nop
mov dx,IN_KEY
in al,dx
not al
nop
nop
and al,0fh
jnz key2
inc bl
loop key1
nkey:
mov al,20h
mov current_key, al
pop dx
pop cx
pop bx
pop ax
ret
key2:
test al,1
je key3
mov al,0
jmp key6
key3:
test al,2
je key4
mov al,8
jmp key6
key4:
test al,4
je key5
mov al,10h
jmp key6
key5:
test al,8
je nkey
mov al,18h
key6:
add al,bl
cmp al,10h
jnc fkey
mov bx,offset KeyTable
xlat
fkey:
mov current_key, al
pop dx
pop cx
pop bx
pop ax
ret
get_key endp
handle_key proc
; 对输入进行处理
push ax
call is_same_as_pre
cmp same_as_pre, 1 ; 先判断当前输入和上一输入是否相同
jne handle_key_continue ; 不相同时再对当前输入进行处理
pop ax
ret
handle_key_continue:
mov al, current_key
cmp al, 10
jnb handle_key_a
call handle_number ; 当前输入是数字时
pop ax
ret
handle_key_a:
cmp al, 0ah
jne handle_key_b
call handle_a ; 当前输入是‘A’时
pop ax
ret
handle_key_b:
cmp al, 0bh
jne handle_key_c
call handle_b ; 当前输入是‘B’时
pop ax
ret
handle_key_c:
cmp al, 0ch
jne handle_key_d
call handle_c ; 当前输入是‘C’时
pop ax
ret
handle_key_d:
cmp al, 0dh
jne handle_key_e
call handle_d ; 当前输入是‘D’时
pop ax
ret
handle_key_e:
cmp al, 0eh
jne handle_key_f
call handle_e ; 当前输入是‘E’时
pop ax
ret
handle_key_f:
cmp al, 0fh
jne key_error
call handle_f ; 当前输入是‘F’时
jmp handle_key_f_ret
key_error:
call handle_error ; 当前没有输入时
handle_key_f_ret:
pop ax
ret
handle_key endp
is_same_as_pre proc
;给same_as_pre赋值
;比较当前输入和上一输入
push ax
mov al, current_key
cmp al, previous_key
je is_same
mov same_as_pre, 0
jmp return
is_same:
mov same_as_pre, 1
return:
pop ax
ret
is_same_as_pre endp
handle_number proc
; 处理输入的数字
; 如果 led_count < 4
; current_num = current_num * 10 + current_key
; led_count += 1
; 当输入数字以外的符号的时候需要把led_count清空
push ax
push bx
push dx
mov is_save_num, 0 ; 输入新的数字时,设置成当前数字还未保存
cmp led_count, 4
jae handle_number_ret
mov ax, current_num
mov bx, 10
mul bx
mov bl, current_key
mov bh, 0
add ax, bx
mov current_num, ax ;current_num = current_num * 10 + current_key
inc led_count
push ax
mov ax, current_num
mov display_num, ax
pop ax
call set_led_num
handle_number_ret:
pop dx
pop bx
pop ax
ret
handle_number endp
handle_error proc
;处理get_key得到的字符不是数字和符号的情况,包含current_key=20h
cmp current_key, 20h
je handle_error_ret
; 处理其它的符号
handle_error_ret:
ret
handle_error endp
handle_a proc
; 处理输入的是加减乘的情况
; 如果数字已经保存或刚输入过右括号
; 则不把数字压入栈
; 否则,数字入栈
; 然后计算
cmp is_save_num, 0
jne calculate_a
mov is_save_num, 1
; 数字入栈
cmp has_right_bracket, 1
je number_not_push
inc di
inc di
push ax
mov ax, current_num
mov operand_stack[di], ah ;将current_num入栈
mov operand_stack[di + 1], al
pop ax
jmp next_a
number_not_push:
mov has_right_bracket, 0
next_a:
mov led_count, 0
mov current_num, 0 ;按下运算符时,数字输入结束,将当前的数字清空
calculate_a:
cmp whole_error, 1
je a_ret ;当前面的式子已经计算出错的时候后面的式子不需要计算了
call get_priority
cmp priority, 0
je push_a ;当前符号优先级大于栈顶符号,直接入栈
call cal_one_op ;否则计算一次,直到当前符号优先级大于栈顶符号优先级
jmp calculate_a
push_a:
inc si
push ax
mov al, current_key
mov operator_stack[si], al ;将当前运算符入栈
pop ax
a_ret:
ret
handle_a endp
handle_b proc
call handle_a
ret
handle_b endp
handle_c proc
call handle_a ; 处理-、*的逻辑和处理+的逻辑相同
ret
handle_c endp
handle_d proc
;处理输入符号是括号的情况
;输入是左括号,直接入栈
;输入是右括号,反复计算直到栈顶是左括号
cmp has_previous_bracket, 0
je no_previous
mov has_previous_bracket, 0
mov has_right_bracket, 1
inc di
inc di
push ax
mov ax, current_num
mov operand_stack[di], ah ;将current_num入栈
mov operand_stack[di + 1], al
pop ax
mov led_count, 0
mov current_num, 0 ;按下运算符时,数字输入结束,将当前的数字清空
cal_between_bracket:
cmp operator_stack[si], 0dh
je is_left_bracket
call cal_one_op
jmp cal_between_bracket
is_left_bracket:
dec si
jmp ret_d
no_previous:
mov has_previous_bracket, 1
inc si
push ax
mov al, current_key
mov operator_stack[si], al
pop ax
ret_d:
ret
handle_d endp
handle_e proc
;处理输入符号是'='的情况
;第一次按下'='时,反复计算直到栈顶是'#'号
push ax
cmp has_input_e, 0 ;为了解决按下第二次'e'键后显示第二个操作数的问题,判断已经输入过'e'后再次输入'e'时不进行任何操作
jne handle_e_ret
mov has_input_e, 1
cmp has_right_bracket,1
je num_not_push_e
inc di
inc di
push ax
mov ax, current_num
mov operand_stack[di], ah ;将current_num入栈
mov operand_stack[di + 1], al
pop ax
num_not_push_e:
mov has_right_bracket, 0
cal_e:
cmp whole_error, 1
je ret_e
cmp operator_stack[si], '#'
je ret_e
call cal_one_op
jmp cal_e
ret_e:
cmp whole_error, 1
je show_error
cmp di, 2
ja show_error ;计算完成后,数字栈栈内剩余数字大于一个时计算结果错误
mov ah, operand_stack[di]
mov al, operand_stack[di + 1]
mov display_num, ax
mov result, ax
call set_led_num ;结果显示在数码管上,点亮二极管,送计数初值,开中断
sti
call ProcTurnOn
call ProcWriteCount
jmp handle_e_ret
show_error:
mov LedBuf+0,0ffh ;计算出现错误时结果显示'F'
mov LedBuf+1,0ffh
mov LedBuf+2,0ffh
mov LedBuf+3,8eh
handle_e_ret:
pop ax
ret
handle_e endp
handle_f proc
;处理按下'F'的情况
call clean_all
ret
handle_f endp
cal_one_op proc
;进行一次计算:弹出一个运算符和两个操作数计算一次
;同时进行计算出错和溢出判断
push ax
push bx
push dx
cmp si, 1
jb cal_error
cmp di, 4
jb cal_error
mov ah, operand_stack[di - 2]
mov al, operand_stack[di - 1]
mov bh, operand_stack[di]
mov bl, operand_stack[di + 1]
mov dl, operator_stack[si]
cmp dl, 0ah ; +
jne cal_not_plus
add ax, bx
cmp ax,9999
ja cal_overflow
jmp cal_ret
cal_not_plus:
cmp dl, 0bh ; -
jne cal_not_minus
cmp ax,bx
jb cal_overflow ; 减法得负也为overflow
sub ax, bx
jmp cal_ret
cal_not_minus:
cmp dl, 0ch ; *
jne cal_error ; 不是 + - * 为error
mul bx
cmp dx, 0
ja cal_overflow ; 乘法溢出为overflow
cmp ax,9999
ja cal_overflow
jmp cal_ret
cal_error:
mov whole_error, 1
jmp cal_ret
cal_overflow:
mov overflow, 1
cal_ret:
dec di
dec di
dec si
mov operand_stack[di], ah
mov operand_stack[di + 1], al
pop dx
pop bx
pop ax
ret
cal_one_op endp
get_priority proc
;获得栈顶运算符和当前输入符号的优先级比较结果
push ax
push bx
push dx
mov al, operator_stack[si]
cmp al, '#'
jne top_not_pound
mov al, 0
jmp curr_operator
top_not_pound:
cmp al, 0dh
jne top_not_bracket
mov al, 1
jmp curr_operator
top_not_bracket:
sub al, 0ah
add al, 2
curr_operator:
mov dl, current_key
cmp dl, 0dh
jne curr_operator_not_pound
mov dl, 1
jmp find_in_table
curr_operator_not_pound:
sub dl, 0ah
add dl, 2
find_in_table:
mov dh, 5 ; 5 x 5 的优先表
mul dh
add al, dl
mov ah, 0
mov bx, ax
mov dl, priority_table[bx]
mov priority, dl
jmp get_priority_ret
get_priority_err:
mov whole_error, 1
get_priority_ret:
pop dx
pop bx
pop ax
ret
get_priority endp
set_led_num proc
;设置ledbuf,从而改变显示在数码管上的内容
; 在handle_number里调用时
; 此时led_count = 已输入的数字位数
; led_count - 1 = 已显示的数字位数
push ax
push bx
push cx
push dx
push di
mov LedBuf+0,0ffh
mov LedBuf+1,0ffh
mov LedBuf+2,0ffh
mov LedBuf+3,0ffh
mov di, 3
mov ax, display_num
cmp overflow, 1
jne ax_not_zero
overFshow:
mov LedBuf+3,08eh ; 8eh : 'F'
JMP set_led_num_ret
ax_not_zero:
mov bx, offset ledmap
mov dx, 0 ; dx 为被除数的高位,需要置为0
mov cx, 10 ; cx 做除数
div cx
add bx, dx ; 除完后,dx为余数,ax为商,把余数加到ledmap的偏移地址上
mov dl, [bx] ; bx为段码的地址,dl 就是要显示的段码
mov bx, offset ledbuf
add bx, di
mov [bx], dl ; 等价于 mov ledbuf+di, dl
dec di
cmp ax, 0
jne ax_not_zero
set_led_num_ret:
pop di
pop dx
pop cx
pop bx
pop ax
ret
set_led_num endp
disp proc
;将ledbuf的六个显示码送到八段数码管进行显示
mov bx,offset LEDBuf
mov cl,6 ;共6个八段管
mov ah,00100000b ;从左边开始显示
DLoop:
mov dx,OUTBIT
mov al,0
out dx,al ;关所有八段管
mov al,[bx]
mov dx,OUTSEG
out dx,al
mov dx,OUTBIT
mov al,ah
out dx,al ;显示一位八段管
push ax
mov ah,1
call Delay
pop ax
shr ah,1
inc bx
dec cl
jnz DLoop
mov dx,OUTBIT
mov al,0
out dx,al ;关所有八段管
ret
disp endp
delay proc ;延时子程序
push cx
mov cx,256
loop $
pop cx
ret
delay endp
;八段管显示码
LedMap db 0c0h,0f9h,0a4h,0b0h,099h,092h,082h,0f8h
db 080h,090h,088h,083h,0c6h,0a1h,086h,08eh
;键码定义
KeyTable db 07h,04h,08h,05h,09h,06h,0ah,0bh
db 01h,00h,02h,0fh,03h,0eh,0ch,0dh
code ends
end start