.section .rodata string: .string "RMLL!\n" .section .text .globl _start .type _start, @function _start: /* Syscall number (=> write) */ movl $4, %eax /* File descriptor */ movl $1, %ebx /* String address */ movl $string, %ecx /* String length */ movl $6, %edx /* Do it ! */ int $0x80 /* Syscall number (=> exit) */ movl $1, %eax /* Return value */ movl $232, %ebx /* Do it ! */ int $0x80