emu: factor out operations and operands into own module

This commit is contained in:
2021-03-11 22:55:51 -08:00
parent b950a56d26
commit 27bc36f9d2
4 changed files with 186 additions and 181 deletions

View File

@@ -2,4 +2,6 @@ extern crate byteorder;
pub mod dos;
pub mod i8088;
mod operands;
mod operations;
pub mod pc;