I need the following assemble code converted to C code. The bsf instruction is the main part that I do not know. Thanks
mov eax, 80000000h
mov bx, 4000
loop1: bsf ecx,eax /(Bit Scan Forward)bsf dest, source,
dec bx
jnz loop1
this was written and compiled in Visual Studio 2003/2005. C code will also be used in Visual Studio
Start Free Trial