Quiz 1 / 6a8725 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. 24080046 240fffee 010f5821 256f0063 00100100 00001000 00000000 01000110 00100100 00001111 11111111 11101110 00000001 00001111 01011000 00100001 00100101 01101111 00000000 01100011 001001 00000 01000 0000000001000110 001001 00000 01111 1111111111101110 000000 01000 01111 01011 00000 100001 001001 01011 01111 0000000001100011 4. Decode it into MIPS assembly language. addiu $8, $0, 70 addiu $15, $0, -18 addu $11, $8, $15 addiu $15, $11, 99 addiu t0, zero, 70 addiu t7, zero, -18 addu t3, t0, t7 addiu t7, t3, 99 5. What is the result (register values) of this calculation t0 = 70 00000046 t7 = 151 00000097 t3 = 52 00000034