-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPP_Q3_P1.asm
More file actions
209 lines (137 loc) · 2.8 KB
/
PP_Q3_P1.asm
File metadata and controls
209 lines (137 loc) · 2.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
; Hook interrupt 65 with following services
; Take two BCD numbers
; Calc Sum
; Display Sum
.model small
.stack 100h
.data
result dw 0
msg db "The Result is:$"
.code
mov ax, @data
mov ds, ax
mov ax, 0
mov es, ax
mov bx, 4 * 65h
mov word ptr es:[bx], offset interrupt_handler
mov word ptr es:[bx + 2], seg interrupt_handler
int 65h
mov ax, 4ch
int 21h
interrupt_handler proc
; Read first digit
mov ah, 01h
int 21h
sub al, '0'
shl al, 4
mov dh, al
; Read second digit
mov ah, 01h
int 21h
sub al, '0'
or dh, al
; Read third digit
mov ah, 01h
int 21h
sub al, '0'
shl al, 4
mov dl, al
; Read fourth digit
mov ah, 01h
int 21h
sub al, '0'
or dl, al
; FOR SECOND DIGIT
; Read first digit
mov ah, 01h
int 21h
sub al, '0'
shl al, 4
mov ch, al
; Read second digit
mov ah, 01h
int 21h
sub al, '0'
or ch, al
; Read third digit
mov ah, 01h
int 21h
sub al, '0'
shl al, 4
mov cl, al
; Read fourth digit
mov ah, 01h
int 21h
sub al, '0'
or cl, al
; ADDING
add dx, cx
mov [result], dx
; DISPLAYING
; Message
mov dx, offset msg
mov ah, 09h
int 21h
; Result
; initialize video memory
mov ax, 0xb800
mov es, ax
;load the result
mov dx, [result]
;DISPLAYING THE FIRST DIGIT
;load the result again
mov ax, dx
;isolate the first digit
shr ax, 12
;display it
mov di, 2*(0*80+22)
call Display
; DISPLAYING THE SECOND DIGIT
;load the result again
mov ax, dx
;isolate the second digit
shl ax, 4
shr ax, 12
;display
inc di
call Display
; DISPLAYING THIRD DIGIT
;load the variable again
mov ax, dx
;isolate the third digit
shl ax, 8
shr ax, 12
;display it
inc di
call Display
; DISPLAYING FOURTH DIGIT
;load the result again
mov ax, dx
;isolate the fourth digit
shl ax, 12
shr ax, 12
;display it
inc di
call Display
ret
interrupt_handler endp
Display proc
; ensure there is only last 4 bits
and ax, 0Fh
; check if its a number or letter
cmp al, 9
;if greater
jg its_letter
;otherwise its a number
add al, '0'
;proceed to display
jmp display_it
its_letter:
add al, 'A' - 10
display_it:
;display the character
mov es:[di], al
inc di
mov es:[di], 11100100b
ret
Display endp