Files
mop3/kernel/amd64/tss.h
2025-12-21 22:53:25 +01:00

21 lines
359 B
C

#ifndef _KERNEL_AMD64_TSS_H
#define _KERNEL_AMD64_TSS_H
#include <libk/std.h>
struct tss {
uint32_t resv0;
uint64_t rsp0;
uint64_t rsp1;
uint64_t rsp2;
uint64_t resv1;
uint64_t ist[7];
uint64_t resv2;
uint16_t resv3;
uint16_t iopb_off;
} __attribute__ ((packed));
volatile struct tss* amd64_get_tss (void);
#endif // _KERNEL_AMD64_TSS_H