aboutsummaryrefslogtreecommitdiff
path: root/kernel/interrupt_descriptor_table.h
blob: 1d0216bf48544c28b0b1b71d412bc26c707d2c7e (plain)
1
2
3
4
5
6
7
8
struct idt_entry
{
  unsigned short int offset_lowerbits;
  unsigned short int selector;
  unsigned char zero;
  unsigned char type_attr;
  unsigned short int offset_higherbits;
} __attribute__((packed));