Hi Jeremy,
A small request that might make dealing with boolean constants a little easier. In some assemblers you can alter a constant at compile time by shifting it right or left like this
mov eax, (MYCONST << 4)
which would take the value of MYCONST and shift it left by 4. There are times when this is could be a very useful tool. Any chance of adding it to GoAsm ?
Edgar