OK, lets look at this code again. I'll write some x86 assembly to do it. Not the best in the world, but we'll get an idea whats going on. Also I need to do this to help my memory. :)
int x1,x2,x3;
for (x1=1; x1<=20000; x1++) {
for(x2=1; x2<=20000; x2++) {
x3 = x1*x2;
}
}
Ok, lets do it the stupidest way possible in x86 NASM:
OK:
segment .data
segment .bss
segment .text
Drake amp; Chris Brown Make The
Drake and Rihanna were spotted
**NEW** Rihanna ft. Drake
PICS : Drake and Rihanna Going
Got well rihanna drake jam,
Rihanna ft. Drake - What#39;s My
Rihanna and Drake ignited the
Both Rihanna and Drake denied
RUMORS: Rihanna On Drake:
Lyrics Rihanna Ft. Drake
Lyrics Rihanna Ft. Drake
Rihanna ft. Drake- What#39;s My
Rihanna And Drake Added As
Rihanna X Drake Grammys 2011.
Rihanna and Drake#39;s studio
Rihanna+boyfriend+drake
int x1,x2,x3;
for (x1=1; x1<=20000; x1++) {
for(x2=1; x2<=20000; x2++) {
x3 = x1*x2;
}
}
Ok, lets do it the stupidest way possible in x86 NASM:
OK:
segment .data
segment .bss
segment .text
No comments:
Post a Comment