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
Never mind. Using the script menu item "Create EXE Makeit.bat" seems to do the trick.
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
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/
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
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.
Project >> Assemble & Link
I tried radasm and it looks like I'll stick with it for a while.
Thanks everyone for the help.
:bg
But if you want to know how it all works, stick to QE, it was designed for the task.
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