Fix PIC, add small delays when initializing

This commit is contained in:
2025-11-18 23:27:49 +01:00
parent 638214a0e2
commit 28c95303e9
8 changed files with 51 additions and 24 deletions

View File

@ -1,7 +1,11 @@
#ifndef INTR_PIC_H_
#define INTR_PIC_H_
#include <stdbool.h>
void intr_pic_init(void);
void intr_pic_eoi(void);
void intr_pic_eoi(bool pic2);
void intr_pic_mask(void);
void intr_pic_unmask(void);
#endif // INTR_PIC_H_