add stdio module
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user