Files
PluralTechnology/service/ptos/head/arch/amd64/idt.h
T
2026-07-10 21:10:47 -04:00

20 lines
369 B
C

/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: AMD64 interrupt gate management
* Author: Chloe M.
*/
#ifndef _MACHINE_IDT_H_
#define _MACHINE_IDT_H_ 1
#include <ptdef.h>
/* Interrupt gate types */
#define IDT_INT_GATE 0x8E
#define IDT_TRAP_GATE 0x8F
#define IDT_USER_GATE 0xEE
#endif /* !_MACHINE_IDT_H_ */