diff --git a/Kernel/src/Tier0/physical_alloc.c b/Kernel/src/Tier0/physical_alloc.c index 12b942c..336718b 100755 --- a/Kernel/src/Tier0/physical_alloc.c +++ b/Kernel/src/Tier0/physical_alloc.c @@ -36,19 +36,19 @@ void physmem_init(u64 MemorySize) u64 physmem_allocate_page(void) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; } u64 physmem_page_to_physical(u64 Page) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; } u64 physmem_physical_to_page(u64 Physical) { - PANIC("Not implemeneted!"); + PANIC("Not implemented!"); return 0; }