Write an MC68000 assembly language program that will add three numbers: one in register D3 and the other two in memory locations specified by A2 and A5. Store the sum in memory location specified in register A6. Use representative input data in the data register and the two source memory locations, run the program, and verify the result in memory. Solution *----------------------------------------------------------- * Title : * Written by : * Date : * Description: *----------------------------------------------------------- ORG $1000 START: ; first instruction of program CLR.L (A6) MOVE.L D3,(A6) ADD.L (A2),(A6) ADD.L (A5),(A6) END START ; last line of source .