1
0
Fork 0

feat/kernel: Added MADT support and SMP

This commit is contained in:
Kevin Alavik 2025-05-16 19:45:59 +02:00
parent aeda945087
commit cdceef1da7
Signed by: cmpsb
GPG key ID: 10D1CC0526FDC6D7
7 changed files with 98 additions and 19 deletions

10
kernel/src/arch/smp.h Normal file
View file

@ -0,0 +1,10 @@
/* EMK 1.0 Copyright (c) 2025 Piraterna */
#ifndef SMP_H
#define SMP_H
#include <stdint.h>
extern uint32_t bootstrap_lapic_id;
void smp_init();
#endif // SMP_H