2022-11-16 19:49:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-01-22 00:47:25 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-03-01 21:21:08 +02:00
|
|
|
namespace Kernel::GDT
|
2022-11-16 19:49:09 +02:00
|
|
|
{
|
|
|
|
|
2023-03-01 21:21:08 +02:00
|
|
|
void initialize();
|
2023-04-25 14:48:12 +03:00
|
|
|
void set_tss_stack(uintptr_t);
|
2022-11-16 19:49:09 +02:00
|
|
|
|
2023-01-16 15:24:10 +02:00
|
|
|
}
|