Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

1And in Conclusion\dots

2Exercises

Check your knowledge!

2.1Short Exercises

  1. Fill in the memory contents for each system after initializing arr. Assume arr begins at memory address 0x1000.

uint32_t arr[2] = {0xD3ADB33F, 0x61C0FFEE};

(a) Little-Endian System

+0+1+2+3
...
0x1000
0x1004
...

(b) Big-Endian System

+0+1+2+3
...
0x1000
0x1004
...