Question: undefined Choose the correct Assembly Language code that will do the following: If dog is equal to cat THEN go to LOOP_A ELSE go to
undefined
Choose the correct Assembly Language code that will do the following: If dog is equal to cat THEN go to LOOP_A ELSE go to LOOP_B if(dog == cat) goto LOOP_A else goto LOOP_B mov AX,cat cmp AX,dog jz LOOP A jmp LOOP_B mov AX,dog cmp AX,cat js LOOP_A jmp LOOP_B cmp cat,dog jnz LOOP_A jmp LOOP_B mov AX.cat cmp AX, dog js LOOP A jmp LOOP_B
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
