home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
ASMFILES.ZIP
/
SMASCII2.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-06-21
|
640b
|
18 lines
prognam segment ;start of segment
;
assume cs:prognam ;assume what`s in CS
;
mov cx,100h ;put count in CX
mov dl,0 ;first ASCII character
next:
mov ah,2 ;Display Output function
int 21h ;Call DOS to print
inc dl ;next ASCII charter
loop next ;do again, unless done
;
int 20h ;return to DOS
;
prognam ends ;end of segment
;
end ;end of assembly