Hi,
I've just started to use C:B and I find it really good, I've got so far a couple of problems only:
I've got this configuration:
Windows 7 64 Bit Running Ubuntu 11.10 64 Bit under vmware and C:B latest stable version (10.5 I think).
I create a console application adding only this line of code :
int main()
{
unsigned flags;
asm volatile ("pushf\n pop %0" : "=rm"(flags) :

;
return 0;
}
This is inline asm and if I step using the debugger inside the assembly generated when the cpu "pop" the value of the EFLAGS register on ebx, I see
a 12 bit value (usually 0x386) now I am wondering if this is correct because I should see at least a 32 bit value because I set up compiler and linker with the option "-m32" and because EFLAGS is a 32 bit register, am I doing something wrong?
I think this is the right place to ask because I have been told that maybe is the -m32 option not working well or the debugger is not correctly set up.
2)The combination ALT + F7 does not execute the next instruction but a symbol like a little hand appears replacing the cursor allowing me to relocate the debugger window, obviously I am trying to do something completely different.
cheers
[attachment deleted by admin]