The MASM Forum

Projects => Rarely Used Projects => GoAsm => Topic started by: shankle on October 09, 2016, 09:46:54 PM

Title: GoASM
Post by: shankle on October 09, 2016, 09:46:54 PM
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
Title: Re: GoASM
Post by: Yuri on October 10, 2016, 02:16:26 PM
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.
Title: Re: GoASM
Post by: shankle on October 10, 2016, 09:15:24 PM
Thank you Yuri for responding.
Didn't know that. Thought it might be an error.