PeachPy icon indicating copy to clipboard operation
PeachPy copied to clipboard

Why is PUSH(r32/m32) not supported?

Open Ou7law007 opened this issue 3 years ago • 0 comments

Error: "Invalid operand types: PUSH r32"

From the source code:

class PUSH(Instruction):
    """Push Value Onto the Stack"""

    def __init__(self, *args, **kwargs):
        """Supported forms:

            * PUSH(imm32)
            * PUSH(r16/m16)
            * PUSH(r64/m64)
        """

Is it intended that PUSH(r32/m32) is missing? Same for POP

Ou7law007 avatar Oct 09 '21 15:10 Ou7law007