repo.or.cz
/
idlebox.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add files
[idlebox.git]
/
linux.s
blob
9f463043b1de63fb6cf463e6ac0ea0219a490d8f
1
.equ SYS_EXIT, 1
2
.equ SYS_READ, 3
3
.equ SYS_WRITE, 4
4
.equ SYS_OPEN, 5
5
.equ SYS_CLOSE, 6
6
.equ SYS_BRK, 45
7
8
.equ LINUX_SYSCALL, 0x80
9
10
.equ STDIN, 0
11
.equ STDOUT, 1
12
.equ STDERR, 2
13
14
.equ END_OF_FILE, 0
15