Quiz 1 / 2aabf688 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. 24080012 240cffec 010c6021 258c004e 00100100 00001000 00000000 00010010 00100100 00001100 11111111 11101100 00000001 00001100 01100000 00100001 00100101 10001100 00000000 01001110 001001 00000 01000 0000000000010010 001001 00000 01100 1111111111101100 000000 01000 01100 01100 00000 100001 001001 01100 01100 0000000001001110 4. Decode it into MIPS assembly language. addiu $8, $0, 18 addiu $12, $0, -20 addu $12, $8, $12 addiu $12, $12, 78 addiu t0, zero, 18 addiu t4, zero, -20 addu t4, t0, t4 addiu t4, t4, 78 5. What is the result (register values) of this calculation t0 = 18 00000012 t4 = 76 0000004c t4 = -2 fffffffe