This website requires JavaScript.
Explore
Help
Sign In
Sinipelto
/
banan-os
forked from
Bananymous/banan-os
Watch
1
Star
0
Fork
You've already forked banan-os
0
Code
Pull Requests
Activity
faf1b661bb
banan-os
/
kernel
/
include
/
kernel
/
GDT.h
10 lines
82 B
C
Raw
Normal View
History
Unescape
Escape
Add GDT and IDT
2022-11-16 19:49:09 +02:00
#
pragma once
Kernel: move GDT initialization to boot.S
2023-01-22 00:47:25 +02:00
#
include
<stdint.h>
Kernel: Initialize GDT in kernel code We dont use the boot GDT only while booting
2023-03-01 21:21:08 +02:00
namespace
Kernel
:
:
GDT
Add GDT and IDT
2022-11-16 19:49:09 +02:00
{
Kernel: Initialize GDT in kernel code We dont use the boot GDT only while booting
2023-03-01 21:21:08 +02:00
void
initialize
(
)
;
Add GDT and IDT
2022-11-16 19:49:09 +02:00
Kernel: Move GDT to its own namespace and cleanup
2023-01-16 15:24:10 +02:00
}