MEMORY EXERCISE Write a program that can do the following. Put the hex values 13374 and 2C3 into memory. Then, add the two values and put the result in register ECX. Compare the value in ECX with your programmer's calculator to see if it is correct. --- SPOILER --- Scroll down to see solution below. SOLUTION: Here is one possible solution: 1. hardcode the value 0x13374 into a data segment memory address 0x403050 2. using the MOV instruction, copy the value 0x2C3 to data segment memory address 0x403060 3. copy the value in memory address (1) to the EAX register 4. copy the value in memory address (2) to the EBX register 5. sum the values in register EAX and register EBX 6. copy the result into register ECX