Zitat von
sirius:
Und hast du das im Real Mode gestartet?
Das ist Schnuppe, wenn es eine
COM Datei ist. Schliesslich wird eine
COM nur im Realmode in einem Segment geladen & ausgeführt.
Code:
org 100h
start:
push cs
pop ds
mov dx, offset hello_world
mov ah, 09h
int 21h
mov ah, 4Ch
int 21h
hello_world
db 'hello, world', 13, 10, '$'
Siehe auch
INT 21h, FUNC 09h