lamina-ras 0.1.0

ras - as/GAS alternative. Cross-platform assembler: assembly source (.s) to relocatable object files (.o). Used by Lamina, usable standalone.
Documentation
1
2
3
4
5
6
7
8
9
//! Binary instruction encoders for x86_64, AArch64, and RISC-V.

pub mod aarch64;
pub mod arx64;
pub mod riscv;
pub mod traits;
pub mod x86_64;

pub use traits::{InstructionEncoder, ParsedInstruction};