I'm messing around with Linux and asm. I can't find a good reference. I have only googled up some lists of system calls with hardly any explanation of what their arguments should be or what they return. man pages, on the other hand, have a ton of information, but don't tell what the constants are or what eax is supposed to be. I guess I could look into linux C headers, wherever and whatever they are (I only switched to linux a few days ago and have hardly done any programming), but that's a bit more cross referencing than I'd like to do.. Is there something I could use?
We're failing to communicate..
I can find name of a sys call and its eax in http://www.informatik.htw-dresden.de/~beck/ASM/syscall_list.html
I can then look at man pages to see what that that function does and what it's arguments mean.
Now I only need to find what the value of O_RDONLY and etc. is. If you could tell me where I can find it, I'd be glad.
Though, surely, there should be a nice reference of all this somewhere, right?