Quiz 1 / 75091dca 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. 240c0013 240bffc7 018b7021 25cb0056 00100100 00001100 00000000 00010011 00100100 00001011 11111111 11000111 00000001 10001011 01110000 00100001 00100101 11001011 00000000 01010110 001001 00000 01100 0000000000010011 001001 00000 01011 1111111111000111 000000 01100 01011 01110 00000 100001 001001 01110 01011 0000000001010110 4. Decode it into MIPS assembly language. addiu $12, $0, 19 addiu $11, $0, -57 addu $14, $12, $11 addiu $11, $14, 86 addiu t4, zero, 19 addiu t3, zero, -57 addu t6, t4, t3 addiu t3, t6, 86 5. What is the result (register values) of this calculation t4 = 19 00000013 t3 = 48 00000030 t6 = -38 ffffffda