mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-02-21 22:33:09 +00:00
22 lines
369 B
NASM
22 lines
369 B
NASM
|
|
%macro balance
|
||
|
|
// stack: address
|
||
|
|
%mpt_read_state_trie
|
||
|
|
// stack: account_ptr
|
||
|
|
%add_const(1)
|
||
|
|
// stack: balance_ptr
|
||
|
|
%mload_trie_data
|
||
|
|
// stack: balance
|
||
|
|
%endmacro
|
||
|
|
|
||
|
|
global balance:
|
||
|
|
// stack: address, retdest
|
||
|
|
%balance
|
||
|
|
// stack: balance, retdest
|
||
|
|
SWAP1 JUMP
|
||
|
|
|
||
|
|
%macro selfbalance
|
||
|
|
// stack: (empty)
|
||
|
|
ADDRESS
|
||
|
|
%balance
|
||
|
|
%endmacro
|