Owen wrote:
> Hi,
>
> I am having beginners problems locating do***entation, where would I
> find the full list of the arguments, n, as in mov eax,n
> like,
>
> mov eax,4 ; sys_write
> mov eax,6 ; sys_close
> mov eax,8 ; create_file
>
> (using linux and nasm if that matters)
They're defined in:
/usr/include/asm/unistd.h
and explained in section 2 of the man pages - "man 2 write", etc. "man
write" is *not* what you want.
Nice do***entation in the AsmRef section of AsmIde from Jeff Owens here:
http://members.save-net.com/jko@[EMAIL
PROTECTED]
(you can download just AsmRef if you want)
Best,
Frank


|