Quiz 1 / eeebaab 1. What areas of knowledge are included in the practice of System-on-Chip design? 2. What is the difference between architecture and microarchitecture? 3. Below is a MIPS program represented in hexadecimal. Show its binary representation. 240d000d 240efffb 01ae4021 250e0053 00100100 00001101 00000000 00001101 00100100 00001110 11111111 11111011 00000001 10101110 01000000 00100001 00100101 00001110 00000000 01010011 001001 00000 01101 0000000000001101 001001 00000 01110 1111111111111011 000000 01101 01110 01000 00000 100001 001001 01000 01110 0000000001010011 4. Decode it into MIPS assembly language. addiu $13, $0, 13 addiu $14, $0, -5 addu $8, $13, $14 addiu $14, $8, 83 addiu t5, zero, 13 addiu t6, zero, -5 addu t0, t5, t6 addiu t6, t0, 83 5. What is the result (register values) of this calculation t5 = 13 0000000d t6 = 91 0000005b t0 = 8 00000008