Skip to content

Commit aa2c17f

Browse files
committed
Lab2 Updated
1 parent 8154e20 commit aa2c17f

File tree

2 files changed

+32
-9
lines changed

2 files changed

+32
-9
lines changed

Lab2/16.asm

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.model small
2+
.code
3+
MOV AH, 1
4+
INT 33
5+
XOR CX, CX
6+
7+
start:
8+
CMP AL, 9
9+
JLE exit
10+
INC CL
11+
SUB AL, 10
12+
JMP start
13+
14+
exit:
15+
MOV DL, 'A'
16+
TEST CL, 1
17+
JZ print
18+
INC DL
19+
20+
print:
21+
MOV AH, 2
22+
INT 33
23+
MOV AH, 76
24+
INT 33
25+
END

Lab2/18.asm

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
.model small
22
.code
3-
i33:
3+
start:
44
INT 33
5-
CMP AH, 2
6-
JE exit
7-
MOV DL, 'C'
8-
MOV AH, 2
9-
JMP i33
10-
exit:
115
MOV AH, 76
12-
INT 33
13-
END
6+
JMP start
7+
e1:
8+
MOV AH, 2
9+
MOV DL, 'C'
10+
JMP start
11+
END e1

0 commit comments

Comments
 (0)