42_KFS/headers/interrupts.h

30 lines
618 B
C
Raw Normal View History

2024-10-01 14:24:33 -04:00
#pragma once
2024-10-08 17:56:34 -04:00
#include <stdint.h>
struct registers {
// data segment selector
uint32_t ds;
// general purpose registers pushed by pusha
uint32_t edi, esi, ebp, esp, ebx, edx, ecx, eax;
// pushed by isr procedure
uint32_t int_no, err_code;
// pushed by CPU automatically
uint32_t eip, cs, eflags, useresp, ss;
};
typedef void (*isr_t)(struct registers *);
void isr_handler(struct registers *regs);
2024-10-08 17:56:34 -04:00
void pic_send_eoi(uint8_t irq);
void register_interrupt_handler(int index, isr_t handler);
2025-01-08 10:38:02 -05:00
static inline void cli(void)
{
__asm__ volatile("cli");
}
static inline void sti(void)
{
__asm__ volatile("sti");
}