Date: Fri, 18 Sep 92 19:56:22 CDT From: "George Jetson" To: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: A correction... I wrote: >Tracing it through with DEBUG32 reveals that the start of the for loop gets >implemented as something like: > mov ebx,[eax-16] (Watch this space) > cmp [ebp-8],ebx > jge _big_cmp.13+384 (0x184c ) > mov edx,[eax-44] >I think that eax-16 is the address of 'i', and ebp-8 is nkeys. Obviously, this was a thinko. [eax-16] is nkeys, and [ebp-8] is i. (Clearly so, because of the 'jge')