Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

org 100h

mov ah, 01 ; ask input from the keyboard with echo and store to al ( one chara
cter also)
int 21h

mov ah, 01 ; ask input from the keyboard with echo and store to al ( one chara
cter also)
int 21h

mov ah, 07 ; ask input from the keyboard without echo an store to al
int 21h
mov a, al
mov dx, offset msg
mov ah, 09
int 21h
mov dx, offset msg1 ; 09 and 21h display words, messages
mov ah, 09
int 21h

mov ah, 02 ; 02 and 21h display one character
mov dl, "*"
int 21h


ret
msg db 10, 13, "Hello World$" ; $ is an end string
msg1 db 10, 13, 65, 66, 67, 68, "$"
a db ?
set db ? ; set variable or memory location

You might also like