-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloop.asm
36 lines (24 loc) · 959 Bytes
/
loop.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
TITLE ASCII : An AL Program to print all the ASCII characters i.e. 256.
.MODEL SMALL
.STACK 100H
.DATA
PROMPT DB 'The 256 ASCII Characters are : $'
.CODE
MAIN PROC
MOV AX, @DATA ; initialize DS
MOV DS, AX
LEA DX, PROMPT ; load and print PROMPT
MOV AH, 9
INT 21H
MOV CX, 256 ; initialize CX
MOV AH, 2 ; set output function
MOV DL, 0 ; initialize DL with first ASCII character
@LOOP: ; loop label
INT 21H ; print ASCII character
INC DL ; increment DL to next ASCII character
DEC CX ; decrement CX
JNZ @LOOP ; jump to label @LOOP if CX is 0
MOV AH, 4CH ; return control to DOS
INT 21H
MAIN ENDP
END MAIN