The MASM Forum

Projects => Rarely Used Projects => GoAsm => Topic started by: avcaballero on September 21, 2018, 04:10:49 AM

Title: New versions for goasm 64 bits?
Post by: avcaballero on September 21, 2018, 04:10:49 AM
Hello, if I'm not wrong it is not allowed in goasm 64 bits for now "mov eax, 64+34" for example, i.e the precompiler doesn't do some calculus
Title: Re: New versions for goasm 64 bits?
Post by: wjr on September 21, 2018, 05:01:49 AM
That particular example with 32-bit integer values and register would work, but yes, there are currently some limitations with 64-bit arithmetic expressions.

Addition of 64-bit integer values does currently work, in which case you would also need to specify a 64-bit register for the result. However, 64-bit subtraction, multiplication, and division are not yet supported.