1use crate::primitives::U256;
4
5pub mod asm;
6pub mod bytes;
7pub mod evm;
8
9#[link(wasm_import_module = "zinkc")]
10#[allow(improper_ctypes)]
11extern "C" {
12 pub fn emit_abi(ptr: u32, len: u32);
14
15 pub fn u256_add(this: U256, other: U256) -> U256;
17
18 pub fn u256_sub(this: U256, other: U256) -> U256;
20
21 pub fn u256_div(this: U256, other: U256) -> U256;
23
24 pub fn u256_lt(this: U256, other: U256) -> bool;
26
27 pub fn u256_max() -> U256;
29
30 pub fn u256_addmod(this: U256, other: U256, modulus: U256) -> U256;
32
33 pub fn u256_mulmod(this: U256, other: U256, modulus: U256) -> U256;
35
36 pub fn label_reserve_mem_32();
38
39 pub fn label_reserve_mem_64();
41}