-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab8.asm
503 lines (351 loc) · 7.38 KB
/
lab8.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
.model tiny
.code
.186
org 100h
start:
jmp install
COMMAND_LINE_LENGTH equ 127
command_line db COMMAND_LINE_LENGTH dup(0)
SPACE equ 20h
TAB equ 9h
NEW_LINE equ 0Ah
CARRIAGE_RETURN equ 0Dh
error_message1 db "Invalid parameters.",13,10,'$'
display_x db 0
display_y db 0
MAX_X equ 72
MAX_Y equ 24
max_coordinate_value dw 0
BUFFER_LENGTH equ 16
buffer db BUFFER_LENGTH dup(0)
attribute db 0Fh
old_int1Ch_handler dd 0F0001260h
old_segment_address dw 0
debug_buffer db 100 dup('$')
int1Ch_handler PROC
pushf
call cs:old_int1Ch_handler
cli
call display_time
sti
iret
int1Ch_handler ENDP
display_time PROC
push es
push ds
pusha
mov ax,cs
mov ds,ax
mov es,ax
mov ah,02h
int 1Ah
jc cannot_read_time
xor ax,ax
mov al,ch
push offset buffer
call convert_int_to_char
add sp,2
mov buffer[4],':'
mov al,attribute
mov buffer[5],al
mov al,cl
push offset buffer+6
call convert_int_to_char
add sp,2
mov buffer[10],':'
mov al,attribute
mov buffer[11],al
mov al,dh
push offset buffer+12
call convert_int_to_char
add sp,2
mov ax,0b800h
mov es,ax
mov ax,0A0h
mov bl,[display_y]
mul bl
mov di,ax
xor ax,ax
mov al,[display_x]
shl al,1
add di,ax
mov si,offset buffer
mov cx,BUFFER_LENGTH
rep movsb
cannot_read_time:
popa
pop ds
pop es
ret
display_time ENDP
convert_int_to_char PROC
push bp
mov bp,sp
mov di,[bp+4]
push ax cx dx di
xor dx,dx
mov bx,10h
xor cx,cx
get_another_number:
div bx
push dx
inc cx
xor dx,dx
cmp ax,0
jne get_another_number
mov bx,cx
write_another_char:
pop dx
mov al,dl
add al,'0'
stosb
mov al,attribute
stosb
loop write_another_char
pop di dx cx ax bp
ret
convert_int_to_char ENDP
end_of_resident_part:
show_str MACRO
push ax
mov ah,9
int 21h
pop ax
ENDM
is_delimiter PROC
xor ah,ah
cmp al,SPACE
jne not_space
mov ah,1
not_space:
cmp al,TAB
jne not_tab
mov ah,1
not_tab:
ret
is_delimiter ENDP
is_digit PROC
xor ch,ch
cmp cl,30h
jge greater_than_zero
jmp not_a_number
greater_than_zero:
cmp cl,39h
jle less_than_nine
jmp not_a_number
less_than_nine:
mov ch,1
not_a_number:
ret
is_digit ENDP
find_word PROC
push bp
mov bp,sp
push ax cx si
mov si,[bp+4]
handle_word:
skip_delimiter:
mov al,[si]
call is_delimiter
cmp ah,1
je found_delimiter
jmp stop_reading_string
found_delimiter:
cmp cx,0
jne string_end_not_reached
jmp stop_reading_string
string_end_not_reached:
inc si
dec cx
jmp handle_word
stop_reading_string:
mov bx,si
sub bx,[bp+4]
skip_character:
mov al,[si]
call is_delimiter
cmp ah,1
jne not_delimiter
jmp word_read
not_delimiter:
cmp cx,0
jne can_read_more
jmp word_read
can_read_more:
cmp al,CARRIAGE_RETURN
jne not_the_end
jmp word_read
not_the_end:
inc si
dec cx
jmp skip_character
word_read:
mov di,si
sub di,[bp+4]
cmp bx,di
je word_not_found
dec dx
word_not_found:
cmp cx,0
jne not_end_of_string
jmp out_of_loop
not_end_of_string:
cmp dx,0
jne not_this_word
jmp out_of_loop
not_this_word:
cmp byte ptr [si],CARRIAGE_RETURN
jne not_stop
jmp out_of_loop
not_stop:
jmp handle_word
out_of_loop:
pop si cx ax bp
ret
find_word ENDP
get_number_from_cmd_line PROC
push bx cx dx si
mov cx,bx
push offset command_line
call find_word
add sp,2
cmp dx,0
jne invalid_input
mov si,10
xor ax,ax
get_another_digit:
mov cl,command_line[bx]
cmp bx,di
jne not_end_of_number
jmp end_of_number
not_end_of_number:
call is_digit
cmp ch,1
je digit_read
jmp invalid_input
digit_read:
mul si
xor ch,ch
sub cx,30h
add ax,cx
cmp ax,[max_coordinate_value]
jle limit_not_reached
jmp invalid_input
limit_not_reached:
inc bx
jmp get_another_digit
end_of_number:
jmp proc_end
invalid_input:
mov ax,0FFh
proc_end:
pop si dx cx bx
ret
get_number_from_cmd_line ENDP
read_command_line PROC
push cx si di
xor cx,cx
mov cl,ds:[0080h]
mov bx,cx
mov si,81h
lea di,command_line
rep movsb
pop di si cx
ret
read_command_line ENDP
install_int1Ch_handler PROC
push ax dx ds
mov dx,offset int1Ch_handler
mov ax,251Ch
cli
int 21h
sti
pop ds dx ax
ret
install_int1Ch_handler ENDP
uninstall_int1Ch_handler PROC
push ax dx ds
mov ax,0f000h
mov ds,ax
mov dx,1260h
mov ax,251Ch
cli
int 21h
sti
pop ds dx ax
ret
uninstall_int1Ch_handler ENDP
check_int60h_handler PROC
push ax bx es
mov ax,3560h
int 21h
mov ax,es
mov [old_segment_address],ax
mov cx,1
cmp bx,0
jne not_zero
cmp ax,0
jne not_zero
xor cx,cx
not_zero:
pop es bx ax
ret
check_int60h_handler ENDP
set_int60h_handler PROC
push ax dx ds
mov ds,ax
mov ax,2560h
cli
int 21h
sti
pop ds dx ax
ret
set_int60h_handler ENDP
free_memory PROC
push ax es
mov ax,[old_segment_address]
mov es,ax
mov ah,49h
int 21h
pop es ax
ret
free_memory ENDP
install:
mov ax,0003h
int 10h
mov ax,cs
mov es,ax
call read_command_line
mov ds,ax
call check_int60h_handler
cmp cx,0
je not_installed_already
call uninstall_int1Ch_handler
call free_memory
xor ax,ax
call set_int60h_handler
not_installed_already:
mov dx,1
mov [max_coordinate_value],MAX_X
call get_number_from_cmd_line
cmp ax,0FFh
je invalid_parameter
mov [display_x],al
mov dx,2
mov [max_coordinate_value],MAX_Y
call get_number_from_cmd_line
cmp ax,0FFh
je invalid_parameter
mov [display_y],al
mov ax,cs
call set_int60h_handler
call install_int1Ch_handler
mov ax,3100h
mov dx,(end_of_resident_part-start+110h)/16
int 21h
invalid_parameter:
mov dx,offset error_message1
show_str
mov ax,4c00h
int 21h
end start