Skip to main content

liil/
lib.rs

1#![feature(iter_map_windows)]
2// `map_windows` lets the NNIL debug formatter pair adjacent instruction boundaries.
3// The feature gate is required because the workspace uses this nightly iterator API.
4
5//! NNIL keeps the lifter independent from the native-code backend.
6//!
7//! The crate contains data only. It does not decode guest instructions and does not emit native
8//! code. This boundary lets another guest architecture or another backend use the same IR.
9
10pub mod nnil;