everytime i try to assemble Tasm(or anything else), i always get this error
c:\Tasm\BIN\tasm32.exe/mx/m4/z/q/zn/I"c:\Tasm\include" "hello.asm"
so ya can someone tell me how to fix this error, im very new to assembly, and RADASM
c:\Tasm\BIN\tasm32.exe/mx/m4/z/q/zn/I"c:\Tasm\include" "hello.asm"
so ya can someone tell me how to fix this error, im very new to assembly, and RADASM
you always get what error?
you just pasted a commandline..
you just pasted a commandline..
i always no mamter wat type of asm(tasm,masm,nasm.etc..) i will still get that same message, well of course the tasm part will change the name to, watever type of asm im useing
and it does not let me assemble anything
and it does not let me assemble anything
check if you have a tasm.bat or something like that on your system in the path
sounds like its running that instead...
sounds like its running that instead...
You should add spaces between parameters
Something more like this:
Please notice that there are two " , " signs before the "import32.lib" parameter.
Something more like this:
@cls
@F:\tasm\bin\tasm32 /m /ml /q /p /kh20000 prototype.asm, prototype.obj
@F:\tasm\bin\tlink32 /x /Tpe /aa /c /V4.0 prototype.obj,prototype.EXE,,import32.lib
@pause
Please notice that there are two " , " signs before the "import32.lib" parameter.
You should add spaces between parameters
Something more like this:
@cls
@F:\tasm\bin\tasm32 /m /ml /q /p /kh20000 prototype.asm, prototype.obj
@F:\tasm\bin\tlink32 /x /Tpe /aa /c /V4.0 prototype.obj,prototype.EXE,,import32.lib
@pause
Please notice that there are two " , " signs before the "import32.lib" parameter.
and how do i add this............srry im such a noob
also there is no tasm.bat or anything like that, in the system patch,
Make yourself a .bat file and paste the commands I gave you. Of course correct the paths so they point to the place where YOU have tasm. I have it in "F:\tasm\bin\". I guess you keep it somewhere else ;)
Additionally, these commands compile and link "prototype.asm" and produce "prototype.exe". Please change these names appropriately or simply name your .asm file "prototype.asm" :)
Additionally, these commands compile and link "prototype.asm" and produce "prototype.exe". Please change these names appropriately or simply name your .asm file "prototype.asm" :)