"Merhaba Dünya" Assembly
.radix 16
.model small
.data
hello db "Merhaba Dünya", 24
.stack 100
.code
main proc
mov DX, dgroup ;set DS to point to data seg
mov DS, DX
mov AH, 9 ;call DOS print service
lea DX, hello
INT 21
mov AX, 4000 ;call DOS terminate service
INT 21
main endp
end main