projects
/
perf-null.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
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