What is the size of each asm instruction?

前端 未结 2 1462
野性不改
野性不改 2020-12-17 19:44

What is the size of each asm instruction? Every instruction takes how many bytes? 8 bytes? Four for the opcode and Four for the argument? What happens when you have one opco

2条回答
  •  醉酒成梦
    2020-12-17 19:55

    Machine code size depends on the processor's architecture.

    For example, on IA-32, the instruction size varies from 1 to 6 bytes (or more).

提交回复
热议问题