We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b873d63 commit 7c73fc7Copy full SHA for 7c73fc7
LAB4/TASK_9.TXT
@@ -2,13 +2,13 @@
2
.STACK 100H
3
.DATA
4
A DW "DIVISABLE BY 5 AND 11 $"
5
-
+B DW "NOT DIVISABLE BY 5 AND 11 $"
6
.CODE
7
MAIN PROC
8
MOV AX, @DATA
9
MOV DS, AX
10
11
- MOV CX,110
+ MOV CX,111
12
MOV AX,CX
13
MOV BL,5
14
DIV BL
@@ -30,11 +30,14 @@ MAIN PROC
30
LEA DX,A
31
MOV AH,9
32
INT 21H
33
+ JMP ALL
34
EXIT:
35
36
+ LEA DX,B
37
+ MOV AH,9
38
+ INT 21H
39
40
+ ALL:
41
42
43
0 commit comments