Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Thread Closed: Off-topic

???
08/04/02 13:39
Read: times


 
#26700 - Problem in compiling *.asm file
I am new to assambly language programming.

I wrote a program simply display 'hello world'
the file was hello.asm.

the code is as

_code segment
assume cs: _CODE, ds: _CODE

start: jmp skip

msg db 'hello ashwani', '$'

skip: mov ax, cs
mov ds, ax

mov ah, 09h
mov dx, offset msg
int 21h

mov ah, 4ch
mov al, 00h
int 21h

_CODE ends
end start


I wrote it in "Micro-IDE Version 2.13i"
by BiPOM Electronics

it does not builds
errors that display are

The Toolkit Directory
"ASXXXXASXMAKSYMANTECEXE"
is not valid

When I want to build it in TASM tool by command " TASM hello.asm "
it creates a hello.obj file then i give the command " TLINK /T hello.obj " to generate .com filebut it creates a .MAP file and shows a error that is

Fatal: Cannot generate COM file : invalid initial entry point address

I use windows98SE.

List of 4 messages in thread
TopicAuthorDate
Problem in compiling *.asm file            01/01/70 00:00      
RE: Problem in compiling *.asm file            01/01/70 00:00      
RE: Problem in compiling *.asm file            01/01/70 00:00      
RE: Marcos Stemmer_______NEW PROBLEM            01/01/70 00:00      

Back to Subject List