diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 17:07:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 17:07:33 +0100 |
| commit | 9fe3b6e1e2447a11644307e83df2b109b24fe0d1 (patch) | |
| tree | d6eafa0dee897572554d4519b1a9cd878591254c /Private/KernelKit/DebugOutput.hpp | |
| parent | a3d92ea68a74ef3cc3d3c9a34540754869e4d014 (diff) | |
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 <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/KernelKit/DebugOutput.hpp')
| -rw-r--r-- | Private/KernelKit/DebugOutput.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
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<const char *> { +class TerminalDevice final : public DeviceInterface<const Char *> { public: - TerminalDevice(void (*print)(const char *), void (*get)(const char *)) - : DeviceInterface<const char *>(print, get) {} + TerminalDevice(void (*print)(const Char *), void (*get)(const Char *)) + : DeviceInterface<const Char *>(print, get) {} virtual ~TerminalDevice() {} |
