Files
china-dictatorship/hello-world/a/Assembler TASM DOS.asm
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00:00

21 lines
204 B
NASM

IDEAL
MODEL SMALL
STACK 100h
DATASEG
msg db "Hello World!", 0dh, 0ah, "$"
CODESEG
start:
mov ax, @data
mov ds, ax
mov dx, offset msg
mov ah, 9
int 21h
mov ah, 4ch
int 21h
end start