in CO and Architecture retagged by
2,755 views
1 vote
1 vote
What is the difference between LOAD/STORE & MOVE instructions?Are they CPU - architecture dependent?
in CO and Architecture retagged by
by
2.8k views

1 Answer

4 votes
4 votes
Best answer

LOAD is used to load data from memory to accumulator.

STORE is used to store the accumulator result in memory.

Both LOAD and STORE are 1-address instructions.

MOVE is used to move contents of a register to memory and vice versa or from one register to another

MOV is a 2-address instruction.

selected by

4 Comments

Thanks for the answer :)
0
0
@ just_bhavana LOAD/STORE can be 2-address instruction
Load r8,0(r4)
content of memory location addressed by r4 is loaded into the register r8.
1
1
That should be MOV instruction right ? @reena
0
0
no, it can be LOAD/STORE.
0
0

Related questions