
That could be it. If that is the case how would I take apart the argument from the opcode?

Hi, On Thu, 28 Oct 2021 at 00:28, M A <teammember0x01@gmail.com> wrote:
That could be it. If that is the case how would I take apart the argument from the opcode?
On recent Python 3 versions each instruction is two bytes in length, the lower byte being the opcode and the higher byte being a (possibly always zero) argument. The value 320 is equal to opcode 64 and higher byte 1. Armin

Hi, On Thu, 28 Oct 2021 at 00:28, M A <teammember0x01@gmail.com> wrote:
That could be it. If that is the case how would I take apart the argument from the opcode?
On recent Python 3 versions each instruction is two bytes in length, the lower byte being the opcode and the higher byte being a (possibly always zero) argument. The value 320 is equal to opcode 64 and higher byte 1. Armin
participants (2)
-
Armin Rigo
-
M A