2025-05-28 14:41:02 -05:00
|
|
|
#ifndef _GDT_H
|
|
|
|
#define _GDT_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2025-06-13 18:03:39 -05:00
|
|
|
void gdt_install(bool prnt_gdt);
|
|
|
|
void create_descriptor(int index, uint32_t base, uint32_t limit, uint16_t flag, bool prnt_gdt);
|
2025-05-28 14:41:02 -05:00
|
|
|
|
|
|
|
#endif
|