I'm new again.
jessebelle Redshirt Local time Today 7:25 AM Joined Mar 18, 2013 Messages 2 --- Location annex Mar 18, 2013 #1 I'm new again.
Architect Professional INTP Local time Today 5:25 AM Joined Dec 25, 2010 Messages 6,687 --- Mar 18, 2013 #2 Code: .section .rodata string: .ascii "Hello, world!\n\0" length: .quad . -string .section .text .globl _start _start: movq $4, %rax movq $1, %rbx movq $string, %rcx movq length, %rdx int $0x80 movq %rax, %rbx movq $1, %rax int $0x80
Code: .section .rodata string: .ascii "Hello, world!\n\0" length: .quad . -string .section .text .globl _start _start: movq $4, %rax movq $1, %rbx movq $string, %rcx movq length, %rdx int $0x80 movq %rax, %rbx movq $1, %rax int $0x80
UfarkTheRipe Insectile Projectile Local time Today 5:25 AM Joined Mar 15, 2013 Messages 130 --- Mar 18, 2013 #3 ASM- impressive..