polkavm_assembler/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3
4// NOTE: The `#[inline(always)]` in this crate were put strategically and actually make a difference; do not remove them!
5
6pub mod amd64;
7mod assembler;
8
9extern crate alloc;
10
11pub use crate::assembler::{Assembler, Instruction, Label};