The MASM Forum

Projects => Rarely Used Projects => GoAsm => Topic started by: xblite on February 01, 2025, 12:54:01 PM

Title: Use ! as last char in parameter
Post by: xblite on February 01, 2025, 12:54:01 PM
Hi,

Is it allowed in GoAsm to use the ! char as the last char as a function parameter, eg, myparam!. In the past it seems that GoAsm treated it as NOT so it did not work. Has this changed?
In my case, the ! suffix means that the variable is a SINGLE type variable.

thanks
David
Title: Re: Use ! as last char in parameter
Post by: wjr on February 02, 2025, 04:18:15 PM
No change, ! can be a NOT operator, so it can not be part of a symbol name. Besides the typical A-Z a-z 0-9 you can use _ @ $ ? as well as # (but ## has a special meaning in definitions).