8 lines
146 B
Rust
8 lines
146 B
Rust
pub mod instructions;
|
|
pub mod register;
|
|
|
|
pub mod prelude {
|
|
pub use crate::instructions::Instruction;
|
|
pub use crate::register::Register;
|
|
}
|