1
0
forked from Rativel/BurritOS

merge branch documentation

This commit is contained in:
Rémi Rativel
2023-05-25 14:16:59 +02:00
17 changed files with 200 additions and 41 deletions

View File

@@ -1,3 +1,12 @@
//! This module implement an Instruction simulator
//! with all the simulated hardware requested to run the Machine :
//! - **MMU**
//! - **Processor**
//! - **RAM**
//! - **Interruption Controler**
//!
//! The disk, the console and the serial coupler aren't implmented for now
//!
pub mod machine;
pub mod error;
pub mod instruction;