aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/gdt/gdt.h
blob: 5c6ae61846a81e052b6243e2f0594b8fee52c32d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MELVIX_GDT_H
#define MELVIX_GDT_H

/**
 * Installs the Global Descriptor Table
 */
void gdt_install();

void tss_write(int32_t num, uint16_t ss0, uint32_t esp0);

void tss_flush();

void set_kernel_stack(uintptr_t stack);

#endif