-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.asm
374 lines (260 loc) · 3.94 KB
/
calc.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
bits 16
org 5000h
%include "user.inc"
Number equ 'n'
Error equ 'e'
main:
mov si, hello_msg
call ui_write_string
.repl:
mov si, prompt
call ui_write_string
mov di, buffer
call ui_read_string
mov si, exit_cmd
call string_compare
je short .return
mov si, help_cmd
call string_compare
je short .help
mov word [lexer_pos], buffer
call next_token
call calc_sum
jc short .repl
mov ax, bx
call ui_write_int
call ui_write_newline
jmp short .repl
.help:
mov si, help_msg
call ui_write_string
jmp short .repl
.return:
ret
calc_sum:
push ax
push cx
call calc_prod
jc short .return
mov ax, bx
.loop:
.try_add:
mov cl, '+'
call accept_token
jc short .try_sub
call calc_prod
jc short .error
add ax, bx
jmp short .done
.try_sub:
mov cl, '-'
call accept_token
jc short .success
call calc_prod
jc short .error
sub ax, bx
jmp short .done
.done:
jmp short .loop
.success:
mov bx, ax
clc
jmp short .return
.error:
stc
.return:
pop cx
pop ax
ret
calc_prod:
push ax
push cx
push dx
call calc_subexp
jc short .return
mov ax, bx
.loop:
.try_mul:
mov cl, '*'
call accept_token
jc short .try_div
call calc_subexp
jc short .error
mov dx, 0
imul bx
jmp short .done
.try_div:
mov cl, '/'
call accept_token
jc short .try_mod
call calc_subexp
jc short .error
cwd
idiv bx
jmp short .done
.try_mod:
mov cl, '%'
call accept_token
jc short .success
call calc_subexp
jc short .error
cwd
idiv bx
mov ax, dx
jmp short .done
.done:
jmp short .loop
.success:
mov bx, ax
clc
jmp short .return
.error:
stc
.return:
pop dx
pop cx
pop ax
ret
calc_subexp:
push ax
push cx
.try_number:
cmp byte [last_type], Number
jne .try_minus
mov bx, [last_value]
call next_token
jc short .error
jmp short .success
.try_minus:
mov cl, '-'
call accept_token
jc .try_parens
call calc_subexp
jc short .error
mov ax, 0
sub ax, bx
mov bx, ax
jmp short .success
.try_parens:
mov cl, '('
call accept_token
jc short .error
call calc_sum
jc short .error
mov cl, ')'
call expect_token
jc short .error
jmp short .success
.success:
clc
jmp short .return
.error:
mov cl, Number
call expect_token
stc
.return:
pop cx
pop ax
ret
accept_token:
cmp cl, [last_type]
jne short .error
call next_token
clc
jmp short .return
.error:
stc
.return:
ret
expect_token:
call accept_token
jnc short .return
.expect_error:
push ax
push si
mov si, no_token
call ui_write_string
mov al, cl
call ui_write_char
call ui_write_newline
pop si
pop ax
stc
.return:
ret
next_token:
push ax
push bx
push si
push di
mov si, [lexer_pos]
.skip_space_loop:
mov al, [si]
call string_char_iswhite
jnc short .read_token
inc si
jmp short .skip_space_loop
.read_token:
call is_special
jnc short .its_digit
mov [last_type], al
inc si
jmp short .success
.its_digit:
call string_char_isdigit
jnc short .expect_digit
mov di, .digits
.read_digits:
stosb
inc si
mov al, [si]
call string_char_isdigit
jc short .read_digits
mov byte [di], 0
.to_number:
mov di, si ; save si
mov si, .digits
call string_to_int
mov si, di ; restore si
mov [last_value], ax
mov [last_type], byte Number
jmp short .success
.expect_digit:
push si
mov si, no_digit
call ui_write_string
pop si
mov byte [last_type], Error
.error:
stc
jmp short .return
.success:
clc
.return:
mov [lexer_pos], si
pop di
pop si
pop bx
pop ax
ret
.digits times 12 db 0
is_special:
push si
mov si, special
call string_find_char
pop si
ret
hello_msg db `help, exit\n`, 0
help_msg db `supported operations: +, -, *, /, % (modulo division)\n`
db `parentheses are also supported, use infix notation\n`, 0
help_cmd db `help`, 0
exit_cmd db `exit`, 0
prompt db `> `, 0
special db `+-*/%()`, 0
no_digit db `error: expected a digit\n`, 0
no_token db `error: expected token: `, 0
last_type db 0
last_value dw 0
lexer_pos dw buffer
buffer:
db 0