diff options
Diffstat (limited to 'HALKit/PowerPC')
| -rw-r--r-- | HALKit/PowerPC/CorePowerPCStart.s | 6 | ||||
| -rw-r--r-- | HALKit/PowerPC/Processor.cpp | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/HALKit/PowerPC/CorePowerPCStart.s b/HALKit/PowerPC/CorePowerPCStart.s new file mode 100644 index 00000000..f0c5ae2b --- /dev/null +++ b/HALKit/PowerPC/CorePowerPCStart.s @@ -0,0 +1,6 @@ +.globl __AssemblerStart +.align 4 +.text + +__AssemblerStart: + b __AssemblerStart
\ No newline at end of file diff --git a/HALKit/PowerPC/Processor.cpp b/HALKit/PowerPC/Processor.cpp index 6bb4ff65..2b26ef24 100644 --- a/HALKit/PowerPC/Processor.cpp +++ b/HALKit/PowerPC/Processor.cpp @@ -31,14 +31,14 @@ namespace HAL // @brief wakes up thread. // wakes up thread from hang. -extern void rt_wakeup_thread(HAL::StackFrame* stack) +void rt_wakeup_thread(HAL::StackFrame* stack) { } // @brief makes thread sleep. // hooks and hangs thread to prevent code from executing. -extern void rt_hang_thread(HAL::StackFrame* stack) +void rt_hang_thread(HAL::StackFrame* stack) { } |
