home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
CPROG
/
LOADEMS.ZIP
/
HELLO.ASM
next >
Wrap
Assembly Source File
|
1989-03-12
|
311b
|
28 lines
code segment public
assume cs:code, ds:code
org 100h
start:
jmp begin
msg DB 'Hello World.',10,13,'$'
begin:
push dx
push ds
push cs
pop ds
mov dx, OFFSET msg
mov ah, 09h
int 21h
pop ds
pop dx
retf
code ends
end start