mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-15 20:54:20 +00:00
6 lines
131 B
Rust
6 lines
131 B
Rust
pub type Byte = u8;
|
|
pub type Half = [Byte; 2];
|
|
pub type Word = [Byte; 4];
|
|
pub type DWord = [Byte; 8];
|
|
pub type QWord = [Byte; 16];
|