Module description

This commit is contained in:
Rémi Rativel 2023-05-10 08:02:25 +02:00
parent c60aaa1aae
commit 2f38edee70
1 changed files with 9 additions and 0 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;