Re: Code representations

2008-04-28 Thread Kai Tietz
"James Courtier-Dutton" <[EMAIL PROTECTED]> wrote on 28.04.2008 15:28:56: > 2008/4/28 Kai Tietz <[EMAIL PROTECTED]>: > > [EMAIL PROTECTED] wrote on 28.04.2008 13:11:39: > > > > > > > > > I am trying to look at assembler code, and representing it as C code. > > > > > > For ia32, x86 platforms,

Re: Code representations

2008-04-28 Thread James Courtier-Dutton
2008/4/28 Kai Tietz <[EMAIL PROTECTED]>: > [EMAIL PROTECTED] wrote on 28.04.2008 13:11:39: > > > > > I am trying to look at assembler code, and representing it as C code. > > > > For ia32, x86 platforms, > > assembler like the following > > > > ADD eax,ebx; > > JO integer_overflow_detected;

Re: Code representations

2008-04-28 Thread Kai Tietz
[EMAIL PROTECTED] wrote on 28.04.2008 13:11:39: > I am trying to look at assembler code, and representing it as C code. > > For ia32, x86 platforms, > assembler like the following > > ADD eax,ebx; > JO integer_overflow_detected; > > How would I represent this in C? > > Kind Regards > > James

Code representations

2008-04-28 Thread James Courtier-Dutton
I am trying to look at assembler code, and representing it as C code. For ia32, x86 platforms, assembler like the following ADD eax,ebx; JO integer_overflow_detected; How would I represent this in C? Kind Regards James