closer to ticking.

has microsteps in the UI
decodes from a NOP only binary
some basic instructions are starting to move data around
This commit is contained in:
2025-06-30 08:36:55 -04:00
parent 8ed93fc90e
commit 9e0e8b5910
15 changed files with 269 additions and 34 deletions
+7
View File
@@ -0,0 +1,7 @@
pub const SIZE_1KB: usize = 1024 * 1024;
pub const SIZE_32KB: usize = SIZE_1KB * 32;
pub const SIZE_64KB: usize = SIZE_1KB * 64;
pub const OFFSET_RESET_VECTOR: u16 = 0xfffc;
pub const OFFSET_INT_VECTOR: u16 = 0xfffe;
+1
View File
@@ -1,2 +1,3 @@
pub mod constants_isa_stub;
pub mod constants_isa_op;
pub mod constants_system;