add input module
This commit is contained in:
parent
f4b44cfd31
commit
635020237b
2 changed files with 2 additions and 0 deletions
1
src/input.rs
Normal file
1
src/input.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
// TODO: grab keyboard keys and interrupt emulation cycle
|
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue