ON'error
December 3rd, 2001, 16:10
.MODEL TINY
.CODE
ORG 100h
PrgAnfang: jmp Ausgabe
HALLO: db 'Danke für eure Hilfe!'
db 0dh, 0ah, '$'
Ausgabe: mov bx, cs
mov ds, bx
mov dx, OFFSET HALLO
mov ah, 09h
int 21h
mov al, 00
mov ah, 4Ch
int 21h
END PrgAnfang
hi, can someone tell me how to compile and link this code with
tasm or masm? i dont know which parameters i should use.
thanks anyway
.CODE
ORG 100h
PrgAnfang: jmp Ausgabe
HALLO: db 'Danke für eure Hilfe!'
db 0dh, 0ah, '$'
Ausgabe: mov bx, cs
mov ds, bx
mov dx, OFFSET HALLO
mov ah, 09h
int 21h
mov al, 00
mov ah, 4Ch
int 21h
END PrgAnfang
hi, can someone tell me how to compile and link this code with
tasm or masm? i dont know which parameters i should use.
thanks anyway