0
votes
1answer
25 views

GCD Iteratively in x86 intel Assembly

I am trying to find GCD iteratively in x86 assembly. Somehow, the loop keeps terminating after the first iteration because remainder=0. Any ideas why? ;while r > 0 do ; Set b = a ; Set a = r ...
1
vote
2answers
1k views

GCD recursive assembly language X86 MASM

Thank everyone for the help I have made some really good changes but now it gives me an answer of +4198498 instead of 5 for the first set of values which I know is wrong. Did i push something wrong or ...
4
votes
2answers
348 views

How can I optimize my C / x86 code?

int lcm_old(int a, int b) { int n; for(n=1;;n++) if(n%a == 0 && n%b == 0) return n; } int lcm(int a,int b) { int n = 0; __asm { lstart: inc n; ...