The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: peaslee on March 29, 2009, 09:36:45 PM

Title: Alternative to manual assembly and linking
Post by: peaslee on March 29, 2009, 09:36:45 PM
I'm just getting started with MASM32 by working through the tutorials. It's going well, but I am used to one-button compile/link/run. Is there any easier way to do this other than from the command prompt?

Thanks,

Bruce
Title: Re: Alternative to manual assembly and linking
Post by: peaslee on March 30, 2009, 12:04:44 AM
Never mind. Using the script menu item "Create EXE Makeit.bat" seems to do the trick.
Title: Re: Alternative to manual assembly and linking
Post by: ecube on March 30, 2009, 01:11:16 AM
http://www.masm32.com/board/index.php?topic=3814.0

you can change /SUBSYSTEM:WINDOWS  to /SUBSYSTEM:CONSOLE for console apps, but thats a global build.bat. I posted in another thread a bunch of different build files for debuggin in olly, console, etc... can't find atm though
Title: Re: Alternative to manual assembly and linking
Post by: donkey on March 30, 2009, 02:24:12 AM
Quote from: peaslee on March 29, 2009, 09:36:45 PM
I'm just getting started with MASM32 by working through the tutorials. It's going well, but I am used to one-button compile/link/run. Is there any easier way to do this other than from the command prompt?

Thanks,

Bruce

Download RadAsm, it is a full featured IDE with a one button build

http://radasm.110mb.com/
Title: Re: Alternative to manual assembly and linking
Post by: jj2007 on March 30, 2009, 03:55:54 AM
Quote from: peaslee on March 29, 2009, 09:36:45 PM
I am used to one-button compile/link/run.

Try RichMasm (http://www.masm32.com/board/index.php?topic=9044.msg73814#msg73814). The button is F6
:bg
Title: Re: Alternative to manual assembly and linking
Post by: tetsu-jp on March 31, 2009, 08:10:37 PM
you need to change the properties of the .BAT files,
so the windows close automatically (eventually you'd like to read the output, so redirect output into a file).

it is not very difficult to do this.
Title: Re: Alternative to manual assembly and linking
Post by: Slugsnack on March 31, 2009, 09:10:51 PM
Project >> Assemble & Link
Title: Re: Alternative to manual assembly and linking
Post by: peaslee on April 07, 2009, 05:12:21 PM
I tried radasm and it looks like I'll stick with it for a while.

Thanks everyone for the help.
Title: Re: Alternative to manual assembly and linking
Post by: hutch-- on April 08, 2009, 10:07:43 AM
 :bg

But if you want to know how it all works, stick to QE, it was designed for the task.
Title: Re: Alternative to manual assembly and linking
Post by: peaslee on April 09, 2009, 11:21:49 PM
Quote from: hutch-- on April 08, 2009, 10:07:43 AM
:bg

But if you want to know how it all works, stick to QE, it was designed for the task.

True, but autocomplete is useful for a beginner like myself and, oh, all the pretty colors!  :8)

Bruce