won't redistribute TASM, TLINK, TD
[dos-tasm-exercises.git] / hello / main.asm
blob2bfae6ddd9f8e14ea7e85e2d3feed0af0467116c
2 ; Copyright (C) 2008 Alexander Potashev
5 .model small
6 .code
8 start:
9 mov ax, dgroup
10 mov ds, ax
12 mov ah, 09h
13 lea dx, text
14 int 21h
16 mov ax, 4c00h
17 int 21h
20 .data
21 text db "Hello, world!", 13, 10, '$'
23 .stack 100
24 end start