home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
assemblr
/
library
/
memory
/
loadems
/
hello.asm
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1989-03-12
|
311 b
|
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