+#include "vectors.h"
+
+#ifndef __ASM__
+#include <hal/cpu.h>
+
+struct exec_param;
+
+typedef struct
+{
+ unsigned int depth;
+ struct
+ {
+ reg32 eax;
+ reg32 ebx;
+ reg32 ecx;
+ reg32 edx;
+ reg32 edi;
+ reg32 ebp;
+ reg32 esi;
+ reg32 ds;
+ reg32 es;
+ reg32 fs;
+ reg32 gs;
+ } __attribute__((packed)) registers;
+
+ union
+ {
+ reg32 esp;
+ volatile struct exec_param* execp;
+ };
+} __attribute__((packed)) isr_param;
+
+struct exec_param
+{
+ isr_param saved_prev_ctx;