|
|
|
|
|
by Tiddles-the2nd
1672 days ago
|
|
xchg %ax,%ax is the nop instruction. I would have expected to see <nop> written instead but the opcode (0x90) is shared by both. It's also possible that xchg %ax,%ax is has been decoded from a multi-byte nop (to align memory) before the function call. |
|
Typically, you use xchg %ax,%ax because you can replace it with a jump if you want.