libarc2 0.6.0

Low-level interface library for ArC TWO™
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc(html_logo_url = "../arci.svg")]
#[macro_use]
extern crate lazy_static;

#[macro_use]
mod macros;

mod memory;
mod instrument;
pub mod registers;
pub mod instructions;

pub use crate::instrument::*;

pub const LIBARC2_VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");