From 012e7b0b67bc6cf22c93f83df671bb3675d26556 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Sat, 2 Apr 2022 10:14:52 +0200 Subject: [PATCH] misc: Fix minor things accidentally reverted in 790a130 --- PROTOCOL.md | 2 +- common/protos/limine.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PROTOCOL.md b/PROTOCOL.md index 7dc7e488..64b616a7 100644 --- a/PROTOCOL.md +++ b/PROTOCOL.md @@ -73,7 +73,7 @@ revisions do. This is all there is to features. For a list of official Limine features, read the "Feature List" section below. -## Executable memory layout +## Entry memory layout The protocol mandates kernels to load themselves at or above `0xffffffff80000000`. Lower half kernels are *not supported*. diff --git a/common/protos/limine.c b/common/protos/limine.c index 29ee838b..bc181bfb 100644 --- a/common/protos/limine.c +++ b/common/protos/limine.c @@ -240,7 +240,7 @@ FEAT_START entry_point = entrypoint_request->entry; - print("limine: Entry point at %X\n", entry_point); + printv("limine: Entry point at %X\n", entry_point); struct limine_entry_point_response *entrypoint_response = ext_mem_alloc(sizeof(struct limine_entry_point_response));