sorry I'm a complete noob when it comes to ASM and IDA. My programming experience is mainly as a Java Developer and I feel somewhat out of my comfort zone.
I'm doing a little reverse engineering and I managed to find pretty much what I wanted. I found the following condition in my program:
mov ecx, [esi+500h]
cmp byte ptr [ecx+679h], 1
jnz loc_7256AAD
As far as I understand, it moves the value at [esi+500h] into register ecx, afterwhich it compares the byte at address [exc+679h] with the byte 1. If the result isn't 0 it jumps to the function loc_7256AAD.
My problem is that the byte at [ecx+679h] is effectively a boolean, always a 0 or a 1. This is fine, but I have no clue how to find the function that decides whether the result is a 0 or a 1. Basically I would just appreciate some advice on how to go about finding the place where [ecx+679h]'s value is set. Thanks.
I'll provide some code from the routine that calls this snippet incase it helps.
push ecx
lea eax, [esp+70h+arg_8]
mov ecx, esp
mov dword ptr [esp+70h+var_30], esp
push eax
call ds:mfc90u_280
mov byte ptr [esp+70h+var_4], 9
mov byte ptr [esp+70h+var_4], 1
mov ecx, [esi+500h]
call sub_7210050
mov ebp, eax
test ebp, ebp
jz loc_7256E73
and loc_7256E73 is the first snippet.
Sorry if I rambled and I appreciate any advice, thanks.
After taking Jens advice, I tried to add a write trace breakpoint, but the memory location changes, i.e. the address ecx+679h is different each time. If anyone has anymore ideas it's greatly appreciated, thanks.