From a13e1c0911c0627184bc38f18c7fdda64447b3ad Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 23 Mar 2025 19:13:48 +0100 Subject: meta(kernel): Reworked repository's filesystem structure. Removing useless parts of the project too. Signed-off-by: Amlal El Mahrouss --- dev/Kernel/HALKit/POWER/HalDebugOutput.cc | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 dev/Kernel/HALKit/POWER/HalDebugOutput.cc (limited to 'dev/Kernel/HALKit/POWER/HalDebugOutput.cc') diff --git a/dev/Kernel/HALKit/POWER/HalDebugOutput.cc b/dev/Kernel/HALKit/POWER/HalDebugOutput.cc deleted file mode 100644 index e9b2c85a..00000000 --- a/dev/Kernel/HALKit/POWER/HalDebugOutput.cc +++ /dev/null @@ -1,27 +0,0 @@ -/* ------------------------------------------- - - Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved. - -------------------------------------------- */ - -#include -#include - -using namespace NeOS; - -/// @brief Writes to COM1. -/// @param bytes -void ke_io_write(const Char* bytes) -{ - if (!bytes) - return; - - SizeT index = 0; - SizeT len = rt_string_len(bytes, 256U); - - while (index < len) - { - // TODO - ++index; - } -} -- cgit v1.2.3