summaryrefslogtreecommitdiffhomepage
path: root/Private/HALKit/PowerPC
diff options
context:
space:
mode:
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