diff options
author | dzwdz | 2021-07-10 16:37:45 +0200 |
---|---|---|
committer | dzwdz | 2021-07-10 16:37:45 +0200 |
commit | d093a8eea6bfb0ff7e621e9ba3307dae698322aa (patch) | |
tree | 08a5272e2813cf8db8feda4ff91d919cb9ad7330 /kernel/gdt.h | |
parent | 1faac72e2514c335e2d5721dce8c9fd1da722062 (diff) |
separate the source code from object files; more modular Makefile
Diffstat (limited to 'kernel/gdt.h')
-rw-r--r-- | kernel/gdt.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/kernel/gdt.h b/kernel/gdt.h deleted file mode 100644 index 9e5a6a5..0000000 --- a/kernel/gdt.h +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -enum { - SEG_null, - // order dictated by SYSENTER - SEG_r0code, - SEG_r0data, - SEG_r3code, - SEG_r3data, - SEG_TSS, - - SEG_end -}; - -void gdt_init(); |