Skip to content

Commit 09b030d

Browse files
committed
Clean up
1 parent e6bf8cc commit 09b030d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

kernel/src/kernel/memory/gdt.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ void gdtInitializeLocal()
7474
memorySetBytes(&localGdt->tss, 0, sizeof(g_tss));
7575
localGdt->tss.rsp0 = 0;
7676

77-
logInfo("gdt last entry: %x", &localGdt->entry[4]);
78-
logInfo("gdt tss entry: %x", &localGdt->entryTss);
79-
logInfo("tss: %x", &localGdt->tss);
80-
hexDump8(&localGdt->tss);
81-
8277
// Load the GDT & TSS
8378
asm volatile("lgdt %0" : : "m" (localGdt->ptr));
8479
asm volatile(

0 commit comments

Comments
 (0)