From dc4d3c01658100cfadc53e8d3f307b20cc603891 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 12 Apr 2021 01:44:17 -0500 Subject: [PATCH] Added isr type enum to quark_x86.c --- src/x86/quark_x86.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/x86/quark_x86.c b/src/x86/quark_x86.c index 70beb88..b8d5339 100644 --- a/src/x86/quark_x86.c +++ b/src/x86/quark_x86.c @@ -7,6 +7,15 @@ #include #include +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;