Click to See Complete Forum and Search --> : meaning of "incl" assembly instruction


suryasantu
November 22nd, 2006, 09:16 AM
Hi,

In Object dump of a 'C' object File, i came across the following instructions.

incl 0x8
mov 0x0,%eax
mov 0x4(%eax),%ebx


What does incl stand for?
-- I google'd for it and came to know that it is for incrementing the values present in a register like incl %eax.

But what does " incl 0x8 " mean?

Note that the instructions are in AT&T syntax.

Thanks in Advance

Regards
Surya Santosh

kahlinor
December 3rd, 2006, 01:58 AM
It's the long form of "inc"
But incl 0x8 doesn't look right to me.