add files
[idlebox.git] / linux.s
blob9f463043b1de63fb6cf463e6ac0ea0219a490d8f
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
8 .equ LINUX_SYSCALL, 0x80
10 .equ STDIN, 0
11 .equ STDOUT, 1
12 .equ STDERR, 2
14 .equ END_OF_FILE, 0