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
9typedef struct {
10 uint32_t base;
11 uint32_t limit;
12 uint8_t accesBytes;
13 uint8_t flags;
14} GDT;
15
16extern void setGdt(uint16_t limit, uint32_t base);
17
18void encodeGdtEntry(uint8_t* target, GDT source);
19
20void initGdt();
21
22#endif //BLU_OS_GDT_H
Fixed-width integer types.
Definition gdt.h:9