There are three numbers stored in Memory Locations 10-12. Write a machine language program to load each number in the accumulator one at a time. Use the immediate addressing mode to add four to each value that is loaded to accumulator. Store the results in Locations 13-15. Let's assume that in Locations 10-12 we have the values 5, 6, and 7. After executing your code, the values in Locations 13-15 should be 9, 10, and 11.
a. Write the assembly language program.
b. Write the machine language.