für die, die jetzt nicht wissen, worum es geht:
DOSSEG
.model small
.stack 100h
.data
msgHello DB "Hello, world!",13,10,"$"
.code
mov ax,@data ; Strichpunkt leitet Kommentar ein!
mov ds,ax ; Datensegment initialisiert
mov dx,offset msgHello ;
mov ah,9 ; Ausgabe eines String
int 21h ;
mov ax,4C00h ; Programm beenden
int 21h ;
END