//! Embedded Function implementations
usecrate::{MacroAssembler,Result};implMacroAssembler{/// Function `sstore` from EVM which is not available in WASM.
pubfn_sstore(&mutself)->Result<()>{self.asm._sstore()}/// Function `sload` from EVM which is not available in WASM.
pubfn_sload(&mutself)->Result<()>{self.asm._sload()}}