push eax
September 4, 2015 ยท View on GitHub
Output:
50
Which is a single opcode.
The opcode can be further decomposed into the following bits:
0 1 0 1 0 0 0 0
^^^^^^^^^ ^^^^^
1 2
- This is a
pushinstruction. - From where we will push.
000iseax.
This is documented as: opcode == 50+rd in the Intel manual. The +rd part says that the 3 last bits indicate where to push from.