Made syscall ids 64 bits in rax

This commit is contained in:
Justin C. Miller
2018-09-07 10:28:13 -07:00
parent cabfec3f1e
commit 3a39d9440a
3 changed files with 7 additions and 7 deletions

View File

@@ -2,9 +2,9 @@ global _start
_start:
xor rbp, rbp ; Sentinel rbp
mov rdi, 0 ; DEBUG syscall
.loop:
mov rax, 0 ; DEBUG syscall
syscall
jmp .loop