diff options
author | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-22 14:51:47 -0400 |
---|---|---|
committer | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-22 14:51:47 -0400 |
commit | 325e2ea9aef0723645b86bdc773f02293747c495 (patch) | |
tree | 2d844c3e30a27eaf463fed851620221f3ad7d540 /kernel/main.c | |
parent | try to find mcfg (diff) | |
parent | force rebuild on header change (diff) | |
download | comus-325e2ea9aef0723645b86bdc773f02293747c495.tar.gz comus-325e2ea9aef0723645b86bdc773f02293747c495.tar.bz2 comus-325e2ea9aef0723645b86bdc773f02293747c495.zip |
Merge branch 'main' into pciepcie
Diffstat (limited to 'kernel/main.c')
-rw-r--r-- | kernel/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/main.c b/kernel/main.c index 4953940..4047a64 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -8,6 +8,7 @@ #include <comus/drivers/gpu.h> #include <comus/drivers/ata.h> #include <comus/fs.h> +#include <comus/procs.h> #include <lib.h> void kreport(void) @@ -40,6 +41,9 @@ void main(long magic, volatile void *mboot) // load file systems fs_init(); + // initalize processes + pcb_init(); + // report system state kreport(); |