mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-15 04:03:13 +00:00
12 lines
209 B
NASM
12 lines
209 B
NASM
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
|