I am trying to set the second byte of the content marked by the label variable
to the content of the EAX register through advanced indexing. When I execute the code below:
movl %eax, 2(variable)
I receive the following error:
Error: junk `(variable)' after expression
Is there a way for me to accomplish moving the content of the EAX register into the second byte of variable?