Stub Bus, and CPU, implement some opcode decoding.

This commit is contained in:
Rekai Musuka
2020-08-06 01:05:16 -05:00
parent b274d61f56
commit f97bf9dbb7
4 changed files with 335 additions and 0 deletions

5
src/lib.rs Normal file
View File

@@ -0,0 +1,5 @@
use instruction::Instruction;
mod bus;
mod cpu;
mod instruction;