GitHub_collection_hello-world/a/assembler_tasm_dos.asm
2018-08-22 01:37:32 -03:00

21 lines
204 B
NASM
Executable File

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