Given the memory locations, values below, and one-address machine with an accumulator (the accumulator is the default destination), what values do the following instructions load into the accumulator?
Assume that R1 and R3 contain the values 0x5000 and 0x3000, respectively.
Memory Location Contents
1000 2000
2000 3000
3000 FACE
4000 5000
5000 1000
MOVE R1 5000
LOADI 0x5000
MOVE *R1
LOADI 0Xface
MOVE *R2 3000
Accumulator