Modeling the Bus and writing first test for NOP instruction

This commit is contained in:
2021-10-13 19:38:37 -05:00
parent 2afa2a1ff8
commit 5d04b7c346
7 changed files with 133 additions and 18 deletions
+7
View File
@@ -0,0 +1,7 @@
pub struct PPU;
impl PPU {
pub fn new() -> Self {
Self{}
}
}