mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-17 05:03:07 +00:00
For now this contains most of the basic framework/structure. Logic for things like insertions will come later.
13 lines
315 B
NASM
13 lines
315 B
NASM
// Load all partial trie data from prover inputs.
|
|
global mpt_load_all:
|
|
// First set GLOBAL_METADATA_TRIE_DATA_SIZE = 1.
|
|
// We don't want it to start at 0, as we use 0 as a null pointer.
|
|
PUSH 1
|
|
%mstore(@GLOBAL_METADATA_TRIE_DATA_SIZE)
|
|
|
|
TODO
|
|
|
|
mpt_load_state:
|
|
PROVER_INPUT(mpt::state)
|
|
TODO
|