ich benutz den nasm unter windows 0.98.
ich erzeug damit ne
com datei. es wird nichts gelinkt. soll bei dem nasm nur für exen notwendig sein.
//edit1
ich hab das jetzt so gemacht:
Code:
org 100h
start:
mov dx, hello_world
mov ah, 09h
int 21h
mov ah, 4Ch
int 21h
section .data
hello_world:
db 'hello, world', 13, 10, '$'