summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.go b/src/main.go
index e296eba..41097de 100644
--- a/src/main.go
+++ b/src/main.go
@@ -266,9 +266,9 @@ func mapX86_64linux(op Operation) string{
buf += "_start:\n"
case "boilerPlateExit":
- buf += "mov rdi, 0\n"
- buf += "mov rax, 60\n"
- buf += "syscall\n"
+ buf += "\tmov rdi, 0\n"
+ buf += "\tmov rax, 60\n"
+ buf += "\tsyscall\n"
case "dumpFunc":
buf += ".dump:\n"