From 9fe3b6e1e2447a11644307e83df2b109b24fe0d1 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 4 Feb 2024 17:07:33 +0100 Subject: HCR-11: Support for EFI GOP and SFP. - SFP stands for Simple Filesystem Protocol, it's always reading through the ESP. - Add GOP for UI code. - Did also patch kernel Virtual Memory code. Signed-off-by: Amlal El Mahrouss --- Private/KernelKit/DebugOutput.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Private/KernelKit/DebugOutput.hpp') diff --git a/Private/KernelKit/DebugOutput.hpp b/Private/KernelKit/DebugOutput.hpp index 875884ba..dd34df8e 100644 --- a/Private/KernelKit/DebugOutput.hpp +++ b/Private/KernelKit/DebugOutput.hpp @@ -15,10 +15,10 @@ namespace HCore { // @brief Emulates a VT100 terminal. -class TerminalDevice final : public DeviceInterface { +class TerminalDevice final : public DeviceInterface { public: - TerminalDevice(void (*print)(const char *), void (*get)(const char *)) - : DeviceInterface(print, get) {} + TerminalDevice(void (*print)(const Char *), void (*get)(const Char *)) + : DeviceInterface(print, get) {} virtual ~TerminalDevice() {} -- cgit v1.2.3