Upload files to "include"

This commit is contained in:
2025-05-20 20:39:37 -05:00
parent 1736fe6590
commit 4c7550b75b
4 changed files with 78 additions and 0 deletions

15
include/isr.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef _ISR_H
#define _ISR_H
#include <stdint.h>
typedef struct {
uint32_t ds, edi, esi, ebp, esp, ebx, edx, ecx, eax;
uint32_t int_no, err_code;
uint32_t eip, cs, eflags, useresp, ss;
} regs_t;
void isr_handler(regs_t *r);
void syscall_handler(regs_t *r);
#endif