Original Post
I am just starting out and i typed in a hello world programm and saved it as a hello.asm file:
.MODEL SMALL .STACK 256 .DATA ausgabe DB 'Hallo, Welt',13,10,'$' .CODE _start: mov ax,@data mov ds,ax mov ax,OFFSET ausgabe mov ah,9 int 21h mov ah,4ch int 21h END _startI tried to assemble it with:
ml hello.asmbut it gives me the error message:
G:\Dev\Asm>ml hello.asm Microsoft (R) Macro Assembler Version 7.10.3077 Copyright (C) Microsoft Corporation. All rights reserved. Assembling: hello.asm hello.asm(9) : error A2006: undefined symbol : DGROUPWhat's wrong? I am using the ML that comes with VS.NET 2003. [edited by - Jonus on October 9, 2003 1:23:28 PM]