Wrote empty definitions for some APIC functions

Started x86 interrupt setup code
This commit is contained in:
2021-04-14 20:23:13 -05:00
parent 3130b07fd1
commit 8851243f19
3 changed files with 51 additions and 7 deletions

23
src/x86/apic.c Normal file
View File

@@ -0,0 +1,23 @@
#include "apic.h"
void apic_enable()
{
}
void apic_eoi()
{
}
void apic_send_ipi(
uint32_t vector,
enum apic_delivery_mode_t delivery_mode,
enum apic_destination_mode_t destination_mode,
enum apic_level_t level,
enum apic_trigger_mode_t trigger_mode,
enum apic_destination_shorthand_t shorthand,
uint32_t destination)
{
}