What will be the final value of EAX in this example? mov eax, 0 mov ecx, 10; outer loop counter L1: mov eax, 3 mov ecx, 5; inner loop counter L2: add eax, 5 loop L2; repeat inner loop loop L1; repeat outer loop
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What will be the final value of EAX in this example? mov eax, 0 mov ecx, 10; outer loop counter L1: mov eax, 3 mov ecx, 5; inner loop ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » What will be the final value of EAX in this example? mov eax, 0 mov ecx, 10; outer loop counter L1: mov eax, 3 mov ecx, 5; inner loop counter L2: add eax, 5 loop L2; repeat inner loop loop L1; repeat outer loop