i have downloaded the latest version of both
RadAsm and
MASM
i have tried my best to run simple hello world program but :'(
please can any one make some hard work and can make step by step pic configuration post so that i can lear assembly language
please cover how to add new language programing and set various variable and how to make first project .
i am too confused how to do it ? ::) ::) ::) ::) ::) ::)
QEditor is more easy for asm newcomers. Try to assemble and link through QEditor. It is included with the masm package.
i have installed the masm32 package in C:\masm32
if you have used a different path, then change accordingly...
Control Panel
System Icon (aka My Computer - Properties)
Advanced tab
Environment Variables button
in the lower pane (System Variables), locate the PATH variable and click on it
Edit button
the PATH environment variable is a series of paths, seperated by semicolons
you do not want to remove any of the existing paths
you want to add a new path to the series
for me, it is C:\masm32\bin
example original:
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\
after adding the masm32 path:
%SystemRoot%\system32;%SystemRoot%;C:\masm32\bin;%SystemRoot%\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\
i added "C:\masm32\bin;" to the list, including a semicolon
you can assemble from the console window command line
using the example name "MyProg.asm"...
for console mode programs, use:
buildc MyProg
for windows GUI programs, use:
build MyProg
once you know you can assemble programs from the command line, then try QEditor or RadAsm IDE's
amitjoc,
The risk when you take on too many things is not knowing enough to get it all set up. BlackVortex has given you good advice here, start with the default editor in MASM32 and learn how the basic stuff works, RadAsm is a very good IDE but you must know enough to set it up and that is not really a beginners task.
With the default editor, go to the tutorial directory and run the tutorial material and you will get the very simple stuff up and running quickly. Once you have got used to how these files are built you can set up whatever you like.
All of you realy Thanks Thanks for helping me and
"dedndave" i follow your step and its your simple step or i say by luck i followed your step perfectly and all
work fine
everything configured
thanks others too for taking time for me
and sorry for posting in wrong section
:clap: :clap: :clap: :clap: :U :U :U :U :cheekygreen: :cheekygreen: :cheekygreen: :cheekygreen: :dance: :dance: :dance:
some place where i can read about build.bat and buildc.bat
with buildc.bat,this works:
print chr$("Hey, this actually works.",13,10)
but dont work compiling with build.bat, please a hint to know what functions works with one and what´s not
thanks in advance
Atem,
It in fact works with both but you must do a CONSOLE build to display text at the console. If you use a GUI build you don't have anywhere to display the text. BUILDC.BAT is the console version, BUILD.BAT is the GUI version.