diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-03 20:39:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-03 20:39:06 +0100 |
| commit | f99e383775fa43c5c1354067962b1590ff2abdae (patch) | |
| tree | f83a9b232c0424963fc9989b517e53f903ee036f /Private/HALKit/PowerPC | |
| parent | 0ca5d0d92ee326f3deda797403c27090bd0784ab (diff) | |
NewBoot: Will work on AHCI instead, ATA is not getting any further in
the future.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/HALKit/PowerPC')
| -rw-r--r-- | Private/HALKit/PowerPC/HalHardware.cxx (renamed from Private/HALKit/PowerPC/HalHardware.cpp) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Private/HALKit/PowerPC/HalHardware.cpp b/Private/HALKit/PowerPC/HalHardware.cxx index 96b2d09f..550d3747 100644 --- a/Private/HALKit/PowerPC/HalHardware.cpp +++ b/Private/HALKit/PowerPC/HalHardware.cxx @@ -12,6 +12,7 @@ extern "C" void flush_tlb() {} extern "C" void rt_wait_for_io() {} + extern "C" HCore::HAL::StackFrame* rt_get_current_context() {} namespace HCore { @@ -32,7 +33,7 @@ void rt_hang_thread(HAL::StackFrame* stack) {} // @brief main HAL entrypoint void ke_init_hal() {} -void system_io_print(const char* bytes) { +void ke_com_print(const char* bytes) { if (!bytes) return; SizeT index = 0; @@ -44,5 +45,5 @@ void system_io_print(const char* bytes) { } } -TerminalDevice kcout(HCore::system_io_print, nullptr); +TerminalDevice kcout(HCore::ke_com_print, nullptr); } // namespace HCore |
