The Visual Studio 2008 debugger is displaying relative addresses in the disassembly window as shown in the snippet below:
00000548 8B 4D B8 mov ecx,dword ptr [ebp-48h]
0000054b 8B 01 mov eax,dword ptr [ecx]
0000054d FF 50 28 call dword ptr [eax+28h]
00000550 89 85 44 FF FF FF mov dword ptr [ebp+FFFFFF44h],eax
00000556 8B 8D 44 FF FF FF mov ecx,dword ptr [ebp+FFFFFF44h]
0000055c E8 2F 1D 2C 76 call 762C2290
00000561 90 nop
Notice how the values of the addresses are too low to be real addresses. When I am at address 0x548 (first line) my EIP is 0x034D1A90. How do I configure the debugger/disassembly window to show the real address (for example, 0x034D1A90) instead of a relative address (for example, 0x0548)?