Re: Help finding ARGC

"Mike Osipov" <[email protected]> Thu, 15 Nov 2007 12:56:12 +0300
Newsgroups org.kernel.vger.linux-assembly
Message-ID <[email protected]>
in the beginning of execution %esp point to argc value
get it: movl (%esp), %eax
or: popl %eax
Now %eax contains argc value