Added isr type enum to quark_x86.c

This commit is contained in:
2021-04-12 01:44:17 -05:00
parent 0b302c5759
commit dc4d3c0165

View File

@@ -7,6 +7,15 @@
#include <stdint.h>
#include <stddef.h>
enum isr_type_t
{
INTERRPUT_TASK32 = 5,
INTERRPUT_TRAP32 = 15,
INTERRPUT_INT32 = 14,
INTERRPUT_TRAP16 = 7,
INTERRPUT_INT16 = 6
};
struct interrupt_descriptor_t
{
uint16_t m_offset1;