mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-04-21 19:13:29 +00:00
9 lines
222 B
NASM
9 lines
222 B
NASM
|
|
global main:
|
||
|
|
// If the prover has no more txns for us to process, halt.
|
||
|
|
PROVER_INPUT(end_of_txns)
|
||
|
|
%jumpi(halt)
|
||
|
|
|
||
|
|
// Call route_txn, returning to main to continue the loop.
|
||
|
|
PUSH main
|
||
|
|
%jump(route_txn)
|