Optimized the code a bit.

This commit is contained in:
Nicolás A. Ortega 2016-09-18 21:06:35 +02:00
parent e5369eca59
commit d058ad9d31
No known key found for this signature in database
GPG Key ID: 2A5A4F4171C6373C

View File

@ -1,6 +1,8 @@
.section .data
hello:
.ascii "Hello, World.\n" # the string
hello:
.ascii "Hello, World!\n" # the string
hello_end:
.equ hello_len, hello_end - hello
.section .text
.global _start
@ -9,9 +11,9 @@ _start:
mov $1, %rax # Define write syscall
mov $1, %rdi # Define stdout
mov $hello, %rsi # Give string
mov $14, %rdx # Give size of the string
mov $hello_len, %rdx # Give size of the string
syscall # Call the kernel to do work for us
mov $60, %rax # Define exit syscall
xor %rdi, %rdi # Give return value
mov $0, %rdi # Give return value
syscall # Call the kernel to do work for us