add input module

This commit is contained in:
Denis-Cosmin NUTIU 2024-12-07 18:11:22 +02:00
parent f4b44cfd31
commit 635020237b
2 changed files with 2 additions and 0 deletions

1
src/input.rs Normal file
View file

@ -0,0 +1 @@
// TODO: grab keyboard keys and interrupt emulation cycle

View file

@ -6,6 +6,7 @@ mod display;
mod emulator; mod emulator;
mod instruction; mod instruction;
mod stack; mod stack;
mod input;
fn main() -> Result<(), anyhow::Error> { fn main() -> Result<(), anyhow::Error> {
env_logger::init(); env_logger::init();