News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Assembly Project Order

Started by test1, September 04, 2013, 03:03:39 AM

Previous topic - Next topic

test1

I'm using WinAsm IDE for assembly development and I wanna make my whole code more like C++ projects order.
I mean, seperate the whole code into headers file and source code.

how can I do it?


qWord

Add a include-file (*.inc) to the project, move all declaration in it and include:
include foo.inc

If you want to split the code into several modules, add new ASM files to the project and mark them as Module, thus they get assembled separately.
MREAL macros - when you need floating point arithmetic while assembling!

Vortex

Hi test1,

Welcome to the forum.

If you installed the Masm32 package, you can find some examples there :

\masm32\examples\exampl01\bmbutton.inc
\masm32\examples\exampl01\bmbutton.asm

Gunther

Hi test1,

welcome to the forum.

Gunther
You have to know the facts before you can distort them.

hutch--

Hi test1,

Welcome on board. I moved the post to the Campus so you would get more answers.

test1