1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

mod system;
mod util;

pub use system::machine_module::ATmega328P;
pub use system::machine_module::Input;
pub use system::machine_module::State;

pub use util::read_hex_into_progmem;