aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/gdt/gdt.h
blob: da364454e62d98cf84b3e5fa3936cf1e09e11d66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);

void tss_flush();

#endif