]> git.k1024.org Git - perf-null.git/blob - asm/null.s
Add a small assembler program
[perf-null.git] / asm / null.s
1         /* NOTE: this is hard-coded for x86-64; I don't know enough
2         assembly to make this nice and use system headers, etc. */
3         .file "null.s"
4         .text
5         .globl _start
6
7 _start:
8         mov     $60, %eax
9         xor     %rdx, %rdx
10         syscall