News:

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

Main Menu

GoASM

Started by shankle, October 09, 2016, 09:46:54 PM

Previous topic - Next topic

shankle

I accidently put two "data sections" in the same program.
GoAsm did not flag it as an error.
Just info to do with as you like.
Thanks for GoAsm

Yuri

Quote from: GoAsm Help
Switching to and from sections

It's easy to switch to a section and back again. Just use either
CODE SECTION or
DATA SECTION
CONST SECTION or their shortened forms as appropriate. You can do this as often as you like through your source script. GoAsm and the linker will concatenate all instructions intended for each section.

shankle

Thank you Yuri for responding.
Didn't know that. Thought it might be an error.