12 lines
209 B
NASM
Raw Normal View History

2022-07-30 22:24:11 -07:00
global ret_zero_ec_mul:
// stack: x, y, s, retdest
%pop3
// stack: retdest
PUSH 0
// stack: 0, retdest
PUSH 0
// stack: 0, 0, retdest
SWAP2
// stack: retdest, 0, 0
JUMP