Write a sequence of assembly language instructions to subtract
each entry of an array A of five two’s complement 16-bit binary
integers from the corresponding entry of an array B of five two’s
complement 16-bit binary integers and construct a third array C of
two’s complement 16-bit binary integers. i.e. C[i] = A[i] -
B[i].
Use the following data for the arrays A and B.
A: 10, -15, 20, 4, -5
B: 25, -5, -30, 6, 10
please answer in...