400
6. Write a sequence of instructions using CMPSD that compare arrayA to arrayB in reverse order. After the comparison, move the first pair of non-matching array values to EAX and EBX.:::::
COUNT = 5****
arrayA DWORD COUNT DUP(?)****
arrayB DWORD COUNT DUP(?)****
What is : ; ( first 4 statements may be in any order )****
mov esi, arrayA + count - 4****
mov edi, arrayB + count - 4****
mov ecx, count****
std****
repe cmpsd****
; (next 2 assignments may be in any order)****
mov eax, [esi+4] ; from arrayA *****
mov ebx, [edi +4] ; from arrayB