What half word is stored at the address 0x1000000A when litt
What half word is stored at the address 0x1000000A when little Indian addressing is used? Address Contents 0 times 10000008 0 times 47575309 0 times 1000000C 0 times 35453788 0 times 10000010 0 times 31001115 0 times 10000014 0 times 75423710
Solution
When we use little endian addressing, contents fill into the address in reverse order.Also the word divided into 4 bytes to occupy 32 bits space .So the content here will divide and store like dis way:
0x09
0x53
0x57
0x47
Talking about addresses, after conveting into decimal,first address is 16777224 .Thus, contents will be stored into the following addresses.
0x09 16777224 0x10000008
0x53 16777225 0x10000009
0x57 16777226 0x1000000A
0x47 16777227 0x100000B
And, for 0x1000000A ,content
