add stdio module

This commit is contained in:
2020-10-08 00:42:24 +02:00
parent e3fe3c6d72
commit 9d7f3d25c8
8 changed files with 208 additions and 3 deletions
+1
View File
@@ -11,6 +11,7 @@ crsn = { path = "../crsn" }
crsn_arith = { path = "../crsn_arith" }
crsn_stacks = { path = "../crsn_stacks" }
crsn_screen = { path = "../crsn_screen" }
crsn_stdio = { path = "../crsn_stdio" }
simple_logger = "1.9.0"
log = "0.4.11"
+2
View File
@@ -15,6 +15,7 @@ use crsn::runtime::run_thread::{RunThread, ThreadToken, ThreadParams};
use crsn_arith::ArithOps;
use crsn_screen::ScreenOps;
use crsn_stacks::StackOps;
use crsn_stdio::StdioOps;
mod read_file;
mod serde_duration_millis;
@@ -127,6 +128,7 @@ fn main() -> anyhow::Result<()> {
ArithOps::new(),
StackOps::new(),
ScreenOps::new(),
StdioOps::new(),
])?;
if config.asm_only {