Assembly Language Question According to the MARS program tha
Assembly Language Question:
According to the MARS program that we are using in class. If we store an integer 0x15a9b379 (a word) at the memory location 12_10. What is the byte value stored at memory location^12 10? b3 15 19 79Solution
d. 79
In MARS program data are stored in little-endian byte order. So each word consists of byte 3,byte 2,byte 1,byte 0.
byte 0 is 79 and it will be stored at memory location 1210.
