CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2006
    Posts
    2

    meaning of "incl" assembly instruction

    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

  2. #2
    Join Date
    Nov 2004
    Posts
    34

    Re: meaning of "incl" assembly instruction

    It's the long form of "inc"
    But incl 0x8 doesn't look right to me.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured