mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-16 05:04:18 +00:00
6 lines
108 B
Rust
6 lines
108 B
Rust
/// Canonical byte type.
|
|
pub type Byte = u8;
|
|
|
|
/// Canonical data and address type.
|
|
pub type Word = [u8; 4];
|