import vanilla x86_64 code as x32

This commit is contained in:
rofl0r
2014-02-23 11:07:18 +01:00
parent 0f169cbb79
commit 323272db17
75 changed files with 2677 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
.global __syscall
.type __syscall,@function
__syscall:
movq %rdi,%rax
movq %rsi,%rdi
movq %rdx,%rsi
movq %rcx,%rdx
movq %r8,%r10
movq %r9,%r8
movq 8(%rsp),%r9
syscall
ret