Add kernel mod

This commit is contained in:
Quentin Legot 2023-02-15 14:56:11 +01:00
parent b5690a7f57
commit f1f57a76e1
4 changed files with 3 additions and 0 deletions

2
src/kernel/mod.rs Normal file
View File

@ -0,0 +1,2 @@
mod thread;
mod scheduler;

0
src/kernel/scheduler.rs Normal file
View File

0
src/kernel/thread.rs Normal file
View File

View File

@ -1,4 +1,5 @@
mod simulator;
mod kernel;
use simulator::machine::Machine;