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