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
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.
Thank you Yuri for responding.
Didn't know that. Thought it might be an error.