1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![no_std]

// NOTE: The `#[inline(always)]` in this crate were put strategically and actually make a difference; do not remove them!

pub mod amd64;
mod assembler;

extern crate alloc;

pub use crate::assembler::{Assembler, Instruction, Label};