help me in an error
help me in an error
(OP)
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
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
RE: help me in an error
CODE
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.
RE: help me in an error
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!
RE: help me in an error
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 ==========