INVOKE Operand , OperandToPush ,… EndOfLine |
Output an automated code according to the current calling convention. Example : (If Option ≠ x64) PUSH …, OperandToPush CALL Operand Example : (If Option = x64) PUSH RSP PUSH [ RSP ] AND SPL , 0xF0 ; Align the stack on 64-bit boundary. PUSH …, OperandToPush'''' MOV R9 , OperandToPush''' MOV R8 , OperandToPush'' MOV RDX , OperandToPush' MOV RCX , OperandToPush SUB RSP , 32 ; Space for RCX, RDX, R8 and R9. CALL Operand ADD RSP , 8*(Count_of_Arguments) ; With a count of arguments ≥ 4. POP RSP |
ARG OperandToPush ,… |
Output an automated code according to the current calling convention. Example : (If Option = x86) PUSH OperandToPush ,… Example : (If Option = x64) PUSH …, OperandToPush'''' MOV R9 , OperandToPush''' MOV R8 , OperandToPush'' MOV RDX , OperandToPush' MOV RCX , OperandToPush Else : Not authorized. |