I need to store these in order in memory in both little endian and big endian. 6
ID: 3566242 • Letter: I
Question
I need to store these in order in memory in both little endian and big endian.
6. Assume that each of the following five values is stored as a 32-bit integer value; and these 5 values are being stored sequentially in memory starting at address 0x200. Show the hex version of the bytes in memory for both the big endian and little endian (as designated) byte addressing schemes. Be sure to extend the Byte order column specifying the correct address values for each byte of memory needed to store these 5 values. HINT: 32 bits is 4 bytes, so 5 values at 4 bytes each would be a total of 20 bytes of memory. a. OxCD3B12 b. OxBCED675S c. 0xl29C5 d. 0x7 e. 0x1213A9E Byte order Big Endian Little Endian 0x200 00 12 0x201 CD 3B 0x202 3B CD 0x203 12 00 0x204 0x205 0x206 0x207 0x208 0x209 0x20a 0x20b 0x20c 0x20d 0x20e 0x20f Etc.Explanation / Answer
Byte Order Big Endian Litle Endian 0x200 00 12 0x201 CD 3B 0x202 3B CD 0x203 12 00 0x204 BC 55 0x205 ED 67 0x206 67 ED 0x207 55 BC 0x208 00 C5 0x209 01 29 0x20a 29 01 0x20b C5 00 0x20c 00 07 0x20d 00 00 0x20e 00 00 0x20f 07 00 0x210 01 9E 0x211 21 3A 0X212 3A 21 0X213 9E 01