Add kernel mod

This commit is contained in:
Quentin Legot 2023-02-15 14:56:11 +01:00 committed by François Autin
parent b44b9d2b67
commit a38251c111
No known key found for this signature in database
GPG Key ID: 343F5D382E1DD77C
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;
use simulator::mem_cmp;