Initial stuff and memory implementation

This commit is contained in:
2025-09-27 16:38:06 +02:00
parent 282740cb59
commit 4a2272ae49
6 changed files with 268 additions and 0 deletions

7
src/consts.rs Normal file
View File

@@ -0,0 +1,7 @@
pub type Byte = u8;
pub type HWord = u16;
pub type Word = u32;
pub type DWord = u64;
pub type Reg = DWord;
pub type Addr = DWord;