diff --git a/helloworld/hello b/helloworld/hello new file mode 100755 index 0000000..6dab388 Binary files /dev/null and b/helloworld/hello differ diff --git a/helloworld/hello.asm b/helloworld/hello.asm new file mode 100644 index 0000000..5fa0fa0 --- /dev/null +++ b/helloworld/hello.asm @@ -0,0 +1,16 @@ +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 edi, 0 + syscall diff --git a/helloworld/hello.o b/helloworld/hello.o new file mode 100644 index 0000000..416f624 Binary files /dev/null and b/helloworld/hello.o differ