import preliminary ppc work by rdp.

This commit is contained in:
Richard Pennington
2012-11-13 18:15:10 +01:00
committed by rofl0r
parent 1e717ea3d2
commit 7669d1e334
38 changed files with 2124 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <bits/asm.h>
#include <bits/syscall.h>
.text
.global __unmapself
.type __unmapself,%function
__unmapself:
li r0, __NR_munmap
sc
li r0, __NR_exit
sc
blr