diff --git a/0x11-singly_linked_lists/101-hello_holberton.asm b/0x11-singly_linked_lists/101-hello_holberton.asm deleted file mode 100644 index f09016c..0000000 --- a/0x11-singly_linked_lists/101-hello_holberton.asm +++ /dev/null @@ -1,26 +0,0 @@ -; File: 101-hello_holberton.asm -; Auth: Brennan D Baraban -; Desc: 64-bit assembly program that prints -; Hello, Holberton followed by a new line. - -extern printf - -section .text - global main - -main: - push rbp - - mov rdi,fmt - mov rsi,msg - mov rax,0 - call printf - - pop rbp - - mov rax,0 - ret - -section .data - msg: db "Hello, Holberton", 0 - fmt: db "%s", 10, 0