Skip to content

Instantly share code, notes, and snippets.

@DavidMah
Created November 13, 2013 01:07
Show Gist options
  • Save DavidMah/7441830 to your computer and use it in GitHub Desktop.
Save DavidMah/7441830 to your computer and use it in GitHub Desktop.
.section .data
potato:
.long 65, 66, 10
.section .bss
.lcomm buffer, 500
.section .text
.globl _start
_start:
movq $1, %rbx
movq $potato, %rcx
movq $24, %rdx
movq $4, %rax
int $0x80
movq %rax, %rbx
movq $1, %rax
int $0x80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment