basic emu skeleton and loop, CALL instruction & rel16 addr mode

This commit is contained in:
2021-02-11 06:29:57 -08:00
parent 1c15695c4b
commit 639e05edac
6 changed files with 260 additions and 1 deletions

4
src/emu/mod.rs Normal file
View File

@@ -0,0 +1,4 @@
extern crate byteorder;
pub mod pc;
pub mod i8088;