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

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 It would be

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; How would I

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, assembler like the