llhd 0.16.0

A Low Level Hardware Description that acts as a foundation for building hardware design tools.
Documentation
#![deny(missing_docs)]
// Copyright (c) 2017-2021 Fabian Schuiki

//! The Low Level Hardware Description language. This library provides tools to
//! create, modify, store, and load LLHD graphs.

#[allow(unused_imports)]
#[macro_use]
extern crate log;

#[macro_use]
extern crate serde;

#[macro_use]
pub mod assembly;
pub mod analysis;
pub mod ir;
pub mod mlir;
pub mod opt;
pub mod pass;
pub mod table;
pub mod ty;
pub mod value;
pub mod verifier;

pub use crate::{ty::*, value::*};