Move const to simulator/mod.rs

This commit is contained in:
Quentin Legot
2023-01-20 18:21:32 +01:00
parent f7f66d31e0
commit 55f5726197
3 changed files with 531 additions and 344 deletions

View File

@ -1,7 +1,7 @@
use super::{decode::{Instruction, decode}, print::*};
use super::{decode::{Instruction, decode}};
use super::global::*;
/// doit disparaitre
const MEM_SIZE : usize= 4096;
const MEM_SIZE : usize = 4096;
pub struct Machine {
pub pc : u64,