diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-10-02 01:04:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 01:04:51 -0400 |
commit | d889181a5de7fe2a00a8743455b42faaac2c9fc0 (patch) | |
tree | cd02e76a68a4b6b2278883849f85e7b03ee6654c /asm/SDK/OS/OSLink.s | |
parent | 9dee5dad1c54fe3ed3e3045ab4f1da960172e644 (diff) | |
parent | af9e714edb2080f2f4ef4cccc5789235a7682b31 (diff) |
Merge pull request #114 from mparisi20/master
More OS splits
Diffstat (limited to 'asm/SDK/OS/OSLink.s')
-rw-r--r-- | asm/SDK/OS/OSLink.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/asm/SDK/OS/OSLink.s b/asm/SDK/OS/OSLink.s new file mode 100644 index 0000000..cd134ae --- /dev/null +++ b/asm/SDK/OS/OSLink.s @@ -0,0 +1,12 @@ +.include "macros.inc"
+
+.section .text, "ax" # 0x80006980 - 0x803E1E60
+
+.global __OSModuleInit
+__OSModuleInit:
+/* 8026EEE0 0026AB40 38 00 00 00 */ li r0, 0
+/* 8026EEE4 0026AB44 3C 60 80 00 */ lis r3, 0x800030CC@ha
+/* 8026EEE8 0026AB48 90 03 30 CC */ stw r0, 0x800030CC@l(r3)
+/* 8026EEEC 0026AB4C 90 03 30 C8 */ stw r0, 0x30c8(r3)
+/* 8026EEF0 0026AB50 90 03 30 D0 */ stw r0, 0x30d0(r3)
+/* 8026EEF4 0026AB54 4E 80 00 20 */ blr
|