Thanks, Svin!:)
vkim,
Asm edit is very nice and I would say:
natascho bolo to charasho, ta tvoya churina to cala rodina maya
I found of your site this much more interesting program avsearch.exe
Question: Is somewhere the english version as this one display everywhere ??? ???? ???? which is very hard to read.
Thanks
Asm edit is very nice and I would say:
natascho bolo to charasho, ta tvoya churina to cala rodina maya
I found of your site this much more interesting program avsearch.exe
Question: Is somewhere the english version as this one display everywhere ??? ???? ???? which is very hard to read.
Thanks
forge, the site is not mine. It belongs to a russian programmer. You can send to him a message by e-mail:avt@avtlab.ru
vkim,
This is your site which i like more - "http://hi-tech.nsys.by"
and from your site I get his link.
He is a fine programmer as you are.
BTW I read all your posts on his board,
but I can type only in English.
This is your site which i like more - "http://hi-tech.nsys.by"
and from your site I get his link.
He is a fine programmer as you are.
BTW I read all your posts on his board,
but I can type only in English.
Thanks, forge! I got from this forum the biggest part of my knowledge of asm. And I think my knowledge is not very deep yet.;)
very nice editor... just what i was looking for. its simple doesnt have alot extra stuff that isnt needed.
i do have a problem though. im using widows 2k and i get an error while assembling. does anyone know have my project settings should look in the properities section? i need to set it up so that it will recongize spaces.
i do have a problem though. im using widows 2k and i get an error while assembling. does anyone know have my project settings should look in the properities section? i need to set it up so that it will recongize spaces.
This is the single best editor I've ever seen. I doubt I'll ever use anything else again.
Smurf, To fix that problem go to Service >> Properties >> Project and add inverted commas around the {b}
For example \MASM32\BIN\Bldall.bat "{b}"
Smurf, To fix that problem go to Service >> Properties >> Project and add inverted commas around the {b}
For example \MASM32\BIN\Bldall.bat "{b}"
E?in i did that previously but this is the error im getting.
blah blah blah
blah blah blah
Directory of c:\Documents and Settings\Administator\Desktop
File Not Found
Press any key to continue.....
it assembles fine and everything and creates and exe but for some reason i get this error. im assuming that when i click build all that it will assemble and then run the exe. i think when trying to run the exe is where the problem is. now i can manually click the run button on the rebar and that works fine.
blah blah blah
blah blah blah
Directory of c:\Documents and Settings\Administator\Desktop
File Not Found
Press any key to continue.....
it assembles fine and everything and creates and exe but for some reason i get this error. im assuming that when i click build all that it will assemble and then run the exe. i think when trying to run the exe is where the problem is. now i can manually click the run button on the rebar and that works fine.
Yeah, I get that problem as well. Its the dir command in the batch file which causes it. I just edited the batch files to fix it.
Personally I prefeer the build window to dissappear when there where no errors so I changed the buildall to the following:
Personally I prefeer the build window to dissappear when there where no errors so I changed the buildall to the following:
@echo off
if not exist rsrc.rc goto over1
\masm32\bin\rc /v rsrc.rc
\masm32\bin\cvtres /machine:ix86 rsrc.res
:over1
if exist %1.obj del %1.obj
if exist %1.exe del %1.exe
\masm32\bin\ml /c /coff %1.asm
if errorlevel 1 goto errasm
if not exist rsrc.obj goto nores
\masm32\bin\Link /SUBSYSTEM:WINDOWS %1.obj rsrc.obj
if errorlevel 1 goto errlink
goto TheEnd
:nores
\masm32\bin\Link /SUBSYSTEM:WINDOWS %1.obj
if errorlevel 1 goto errlink
goto TheEnd
:errlink
echo Link error
pause
goto TheEnd
:errasm
echo Assembly Error
pause
goto TheEnd
:TheEnd
works great thank you!