Moving and consolidating repos
This commit is contained in:
16
x86_64/Hello/hello64.asm
Normal file
16
x86_64/Hello/hello64.asm
Normal file
@@ -0,0 +1,16 @@
|
||||
section .data
|
||||
hello db "Hello, World!", 10 ; Declared bits with a new line term (10)
|
||||
|
||||
section .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov rax, 1
|
||||
mov rdi, 1
|
||||
mov rsi, hello
|
||||
mov rdx, 14
|
||||
syscall
|
||||
|
||||
mov rax, 60
|
||||
mov rdi, 0
|
||||
syscall
|
||||
Reference in New Issue
Block a user