diff options
author | Oxore <oxore@protonmail.com> | 2020-03-05 00:51:20 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2020-03-05 00:51:20 +0300 |
commit | 64858ac87fe13b877682e7b8813c06359e45a0fc (patch) | |
tree | 008f9da5cb29fb82632a40be46ea540f76ab2a78 /src/main.rs | |
parent | 19e0e4cb5f26df537bf07b428700bea30460fd5b (diff) |
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 5aa3307..cc5b707 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,16 +1,16 @@ extern crate clap; +use std::cell::RefCell; use std::fs; use std::io; use std::io::prelude::*; +use std::rc::Rc; use std::sync::mpsc::{channel, Receiver, Sender}; use std::thread; use std::time::Duration; -use std::rc::Rc; -use std::cell::RefCell; -mod cpu8051; mod bus; +mod cpu8051; mod progmem; mod ram; |