Re: Instruction 320

Armin Rigo <[email protected]> Thu, 28 Oct 2021 08:22:10 +0200
Newsgroups gmane.comp.python.pypy
Message-ID <CAMSv6X3uJsMxLSAdb2W8f0oiaAgnpvf1C4y1gRhoD4TQNoNgmw@mail.gmail.com>
Hi,

On Thu, 28 Oct 2021 at 00:28, M A <[email protected]> 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