How can I read register value to variable with one inline assembler command? I am using gcc on old freeBSD system (v2.1 i386).
I have such code:
static volatile unsigned long r_eax, r_ebx;
asm ("movl %%eax, %0\n" :"=r"(r_eax));
asm ("movl %%ebx, %0\n" :"=r"(r_ebx));
As result I get this:
mov %eax,%eax
mov %eax,0x1944b8
mov 0x1944b8,%eax
mov %ebx,%eax
mov %eax,0x1944bc
mov 0x1944bc,%eax
But i need just:
mov %eax,0x1944b8
mov %ebx,0x1944bc
How can I achieve this result?