9 lines
222 B
NASM
Raw Normal View History

2022-09-29 23:09:32 -07:00
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)