Line 4 originally says: mov( [ EBX + ECX ], DH ); // Line 4…
Line 4 originally says: mov( [ EBX + ECX ], DH ); // Line 4 For the purposes of this question only, suppose I decide to rewrite that statement as: mov( [ EBX ], DH ); // Revised Line 4 With this change in place, to make the code loop correctly and complete its task with this revised line 4, what would Line 5 need to be changed to?
Read Details