diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-20 08:42:45 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-20 08:42:45 +0100 |
| commit | e718262c5e5163378ef92469db9b94908dccf12b (patch) | |
| tree | 98da3dbd414c14ff86e1d1c0f459285b78f63ec8 /dev/ZKAKit/KernelKit/DebugOutput.h | |
| parent | ade3a2578ca8d6836b8e73160455df80d49cf045 (diff) | |
ADD: Add CoreBoot header, need to add missing fields for specific platforms.
Diffstat (limited to 'dev/ZKAKit/KernelKit/DebugOutput.h')
| -rw-r--r-- | dev/ZKAKit/KernelKit/DebugOutput.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKAKit/KernelKit/DebugOutput.h b/dev/ZKAKit/KernelKit/DebugOutput.h index c00df2e0..b268d874 100644 --- a/dev/ZKAKit/KernelKit/DebugOutput.h +++ b/dev/ZKAKit/KernelKit/DebugOutput.h @@ -11,7 +11,7 @@ #include <NewKit/OwnPtr.h> #include <NewKit/Stream.h> -#define kDebugMaxPorts 16 +#define kDebugMaxPorts 56 #define kDebugUnboundPort 0x0FEED @@ -35,7 +35,7 @@ namespace Kernel inline TerminalDevice hex_number(const Long& x); // @brief Emulates a VT100 terminal. - class TerminalDevice final : public DeviceInterface<const Char*> + class TerminalDevice final ZKA_DEVICE<const Char*> { public: TerminalDevice(void (*print)(const Char*), void (*get)(const Char*)) @@ -43,7 +43,7 @@ namespace Kernel { } - virtual ~TerminalDevice() = default; + ~TerminalDevice() override; /// @brief returns device name (terminal name) /// @return string type (const Char*) |
