write an instruction sequence to store 135 at data memory lo
write an instruction sequence to store 1,3,5 at data memory locations at 0x2000, 0x2005 and 0x200A respectively ( use assembly language)
Please can someone help me I need an answer to this within the next 45 mins. Its terribly urgent.
Solution
in assembly language for storing a data the instruction used is simply MOV.
hence fromthe given data, to store 1,3,5 at memory locations 0x2000,0x2005,0x200A the instructions will be like below:
MOV 0x2000,#1
MOV 0x2005,#2
MOV 0x200A,#3

