10 lines
189 B
C
10 lines
189 B
C
#ifndef _GDT_H
|
|
#define _GDT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void gdt_install(bool prnt_gdt);
|
|
void create_descriptor(int index, uint32_t base, uint32_t limit, uint16_t flag, bool prnt_gdt);
|
|
|
|
#endif
|