diff --git a/interrupts.h b/interrupts.h index 09c0a21..7e9c082 100644 --- a/interrupts.h +++ b/interrupts.h @@ -15,7 +15,7 @@ struct cpu_reg_state { u32 ebx, edx, ecx, eax; u32 int_no, err_code; // pushed by each interrupt dispatcher u32 eip, cs, eflags, useresp, ss; // processor pushes this automatically -};//__attribute__((packed)); // we shouldn't need packing since everythign is dwords here +}__attribute__((packed)); // we shouldn't need packing since everythign is dwords here #define IDT_SIZE 256