Initial Commit
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
.global _start
|
||||
|
||||
.section .text
|
||||
_start:
|
||||
call main
|
||||
|
||||
mov $60, %rax # exit syscall (you define this later)
|
||||
xor %rdi, %rdi
|
||||
syscall
|
||||
|
||||
hang:
|
||||
jmp hang
|
||||
Reference in New Issue
Block a user