Moving and consolidating repos
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
|
||||
section .data
|
||||
text db "Hello, World!", 10
|
||||
|
||||
section .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov rax, 1
|
||||
mov rdi, 1
|
||||
mov rsi, text
|
||||
mov rdx, 14
|
||||
syscall
|
||||
|
||||
mov rax, 60
|
||||
mov rdi, 0
|
||||
syscall
|
||||
|
||||
|
||||
Reference in New Issue
Block a user