Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help me in an error

Status
Not open for further replies.

MichealSamer

Programmer
Dec 1, 2010
2
0
0
EG
e1>'ml.exe' is not recognized as an internal or external command,
1>operable program or batch file.
1>Project : error PRJ0019: A tool returned an error code from "Assembling..."
1>Build log was saved at "file://e:\Mika\kolia\first term\Assembly Language\p1\Debug\BuildLog.htm"
1>Project - 1 error(s), 0 warning(s)

this error faced me & i cant solve it
Iam new in assembly
iam sure that code is correct and that error appears in any program i run in assembly
 
It looks like whatever you are doing to call something to compile / link your program is not working.

Code:
e1>'ml.exe' is not recognized as an internal or external command, operable program or batch file.

This looks like a NT command-prompt error.

It is not possible for anyone to acknowledge truth when their salary depends on them not doing it.
 
what does it say in the build log (that should be a good clue)
what is your code, without that no one here will even be able to start helping.


I do not Have A.D.D. im just easily, Hey look a Squirrel!
 
sir, it is a very simple code


INCLUDE Irvine32.inc
.data
mystr byte "Welcome",0
.code
main PROC

mov edx, offset mystr
mov eax, 10000h
call WriteString
call DumpRegs
exit
main ENDP

END main




1>------ Build started: Project: Project, Configuration: Debug Win32 ------
1>Assembling...
1>'ml.exe' is not recognized as an internal or external command,
1>operable program or batch file.
1>Project : error PRJ0019: A tool returned an error code from "Assembling..."
1>Build log was saved at "file://e:\Mika\kolia\first term\Assembly Language\p1\Debug\BuildLog.htm"
1>Project - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top