summaryrefslogtreecommitdiffhomepage
path: root/Private/HALKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-30 17:59:15 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-30 17:59:15 +0100
commit1be243700efc9e36060c5fb65c951d5db6b98e94 (patch)
tree2f57d5092f4de4798e80e80b6dd29f984edb7683 /Private/HALKit
parent1d3bed385c9666db5b1803ee8e02a2c4fdcc9f29 (diff)
Add ROADMAP details, add EFI Library for bootloader.
Add assignee to code in MailMap. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/HALKit')
-rw-r--r--Private/HALKit/AMD64/HardwareInit.cpp2
-rw-r--r--Private/HALKit/AXP/CR.s (renamed from Private/HALKit/Alpha/CR.s)0
-rw-r--r--Private/HALKit/AXP/CoreInterruptHandlerDEC.cpp (renamed from Private/HALKit/Alpha/CoreInterruptHandlerDEC.cpp)0
-rw-r--r--Private/HALKit/AXP/CoreSyscallHandlerDEC.cpp (renamed from Private/HALKit/Alpha/CoreSyscallHandlerDEC.cpp)0
-rw-r--r--Private/HALKit/AXP/HAL.s (renamed from Private/HALKit/Alpha/HAL.s)0
-rw-r--r--Private/HALKit/AXP/Processor.hpp (renamed from Private/HALKit/Alpha/Processor.hpp)0
-rw-r--r--Private/HALKit/AXP/README (renamed from Private/HALKit/Alpha/README)0
-rw-r--r--Private/HALKit/AXP/README.TXT1
-rw-r--r--Private/HALKit/AXP/SYSCALL.s (renamed from Private/HALKit/Alpha/SYSCALL.s)0
-rw-r--r--Private/HALKit/AXP/VM.s (renamed from Private/HALKit/Alpha/VM.s)0
-rw-r--r--Private/HALKit/PowerPC/Processor.cpp2
11 files changed, 3 insertions, 2 deletions
diff --git a/Private/HALKit/AMD64/HardwareInit.cpp b/Private/HALKit/AMD64/HardwareInit.cpp
index db84226b..1856cc2d 100644
--- a/Private/HALKit/AMD64/HardwareInit.cpp
+++ b/Private/HALKit/AMD64/HardwareInit.cpp
@@ -12,7 +12,7 @@
// bugs = 0
namespace HCore {
-bool init_hal() {
+bool ke_init_hal() {
// TODO: Hardware Specific stuff.
return true;
diff --git a/Private/HALKit/Alpha/CR.s b/Private/HALKit/AXP/CR.s
index b01dc619..b01dc619 100644
--- a/Private/HALKit/Alpha/CR.s
+++ b/Private/HALKit/AXP/CR.s
diff --git a/Private/HALKit/Alpha/CoreInterruptHandlerDEC.cpp b/Private/HALKit/AXP/CoreInterruptHandlerDEC.cpp
index e69de29b..e69de29b 100644
--- a/Private/HALKit/Alpha/CoreInterruptHandlerDEC.cpp
+++ b/Private/HALKit/AXP/CoreInterruptHandlerDEC.cpp
diff --git a/Private/HALKit/Alpha/CoreSyscallHandlerDEC.cpp b/Private/HALKit/AXP/CoreSyscallHandlerDEC.cpp
index 0881f9c6..0881f9c6 100644
--- a/Private/HALKit/Alpha/CoreSyscallHandlerDEC.cpp
+++ b/Private/HALKit/AXP/CoreSyscallHandlerDEC.cpp
diff --git a/Private/HALKit/Alpha/HAL.s b/Private/HALKit/AXP/HAL.s
index 46127130..46127130 100644
--- a/Private/HALKit/Alpha/HAL.s
+++ b/Private/HALKit/AXP/HAL.s
diff --git a/Private/HALKit/Alpha/Processor.hpp b/Private/HALKit/AXP/Processor.hpp
index e6a00db3..e6a00db3 100644
--- a/Private/HALKit/Alpha/Processor.hpp
+++ b/Private/HALKit/AXP/Processor.hpp
diff --git a/Private/HALKit/Alpha/README b/Private/HALKit/AXP/README
index 91e7b134..91e7b134 100644
--- a/Private/HALKit/Alpha/README
+++ b/Private/HALKit/AXP/README
diff --git a/Private/HALKit/AXP/README.TXT b/Private/HALKit/AXP/README.TXT
new file mode 100644
index 00000000..03c2b816
--- /dev/null
+++ b/Private/HALKit/AXP/README.TXT
@@ -0,0 +1 @@
+A Toy HAL to test the Kernel portability.
diff --git a/Private/HALKit/Alpha/SYSCALL.s b/Private/HALKit/AXP/SYSCALL.s
index 19cab808..19cab808 100644
--- a/Private/HALKit/Alpha/SYSCALL.s
+++ b/Private/HALKit/AXP/SYSCALL.s
diff --git a/Private/HALKit/Alpha/VM.s b/Private/HALKit/AXP/VM.s
index d8d7aa71..d8d7aa71 100644
--- a/Private/HALKit/Alpha/VM.s
+++ b/Private/HALKit/AXP/VM.s
diff --git a/Private/HALKit/PowerPC/Processor.cpp b/Private/HALKit/PowerPC/Processor.cpp
index 9ac0953e..04676eff 100644
--- a/Private/HALKit/PowerPC/Processor.cpp
+++ b/Private/HALKit/PowerPC/Processor.cpp
@@ -30,7 +30,7 @@ void rt_wakeup_thread(HAL::StackFrame* stack) {}
void rt_hang_thread(HAL::StackFrame* stack) {}
// @brief main HAL entrypoint
-void init_hal() {}
+void ke_init_hal() {}
void system_io_print(const char* bytes) {
if (!bytes) return;