Question: Write the assembly language instructions necessary to convert each element in BCDArray (an array of Binary Coded Decimals) to it's ASCII equivalent and store the
Write the assembly language instructions necessary to convert each element in BCDArray (an array of Binary Coded Decimals) to it's ASCII equivalent and store the result in ASCIIArray.
Example: BCDArray[0] = 39h so ASCIIArray[0] = 3339h
BCDArray[1] = 22h so ASCIIArray[1] = 3232h
BCDArray[2] = 34h so ASCIIArray[2] = 3334h
BCDArray byte 39h, 22h, 34h, 10h, 99h, 84, 42h, 64h, 33h, 09h, 58h
ASCIIArray word lengthof BCDArray dup(?)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
