blu_os
Loading...
Searching...
No Matches
gdt.h
1
//
2
// Created by dylan on 08/07/2026.
3
//
4
5
#ifndef BLU_OS_GDT_H
6
#define BLU_OS_GDT_H
7
#include <
stdint.h
>
8
9
typedef
struct
{
10
uint32_t base;
11
uint32_t limit;
12
uint8_t accesBytes;
13
uint8_t flags;
14
}
GDT
;
15
16
extern
void
setGdt(uint16_t limit, uint32_t base);
17
18
void
encodeGdtEntry(uint8_t* target,
GDT
source);
19
20
void
initGdt();
21
22
#endif
//BLU_OS_GDT_H
stdint.h
Fixed-width integer types.
GDT
Definition
gdt.h:9
kernel
include
arch
x86
i386
gdt
gdt.h
Generated by
1.16.1