CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2003
    Location
    NY
    Posts
    20

    any assembly gurus out there!!

    Can anyone tell me what does the crash on second line mean?
    mov ecx,[eax+0x14]
    mov eax,[ecx]
    test eax,eax

    I got a crash on second line.

  2. #2
    Join Date
    May 2000
    Location
    Armenia
    Posts
    201
    The most evident answer is that after first line is executed ecx register contains pointer of unacceptable for reading data, for example ecx is 0.

  3. #3
    Join Date
    Oct 2003
    Location
    Philadelphia, PA
    Posts
    167
    Better yet, what are you doing that requires assembly? Can't you get it out of assembler and into something else?
    Mike Dershowitz
    miked@lexientcorp.com
    www.lexientcorp.com

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