You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically these are the following oddity that I've noticed in GAS so far. (The description might not be 100% accurate)
LUI takes the lower 20 bits, not the upper 20 bit, and uses %LOW and %HI() to shift the bits (HI = high 20bit shifted over 12) (low = grabbing the low 12 bits)
Look into if I want to have 1:1 compat with GAS in the parser/assembler and have a flag to enable/disable the compat, or if it would be better to just provide a transpiler of sorts that can take the GAS syntax outputted by gcc -S and reformat it into a format that my assembler can take.
The text was updated successfully, but these errors were encountered:
Basically these are the following oddity that I've noticed in GAS so far. (The description might not be 100% accurate)
Look into if I want to have 1:1 compat with GAS in the parser/assembler and have a flag to enable/disable the compat, or if it would be better to just provide a transpiler of sorts that can take the GAS syntax outputted by
gcc -S
and reformat it into a format that my assembler can take.The text was updated successfully, but these errors were encountered: