Fill in the blanks using your favorite text editor. The simpler the better. Problem HW9A -- Write the assembly code for the following C statements 1) x = 0 ; 2) i = 0 ; 3) ++i ; 4) j = V[i] ; 5) x = x + (j & 0x3) ; 6) j = j >> 2 ; Problem HW9B -- translate the following C code into C where the only C control structures that can be used are: goto LABEL ; if (VAR RELOP 0) goto LABEL ; LABEL can be any label in your code. VAR can be any variable in your code. RELOP can be any of the C equality or relational operators: == != < <= > >= This means no while, for, do, else, or unrestricted if. for (i=0; i<100; ++i) { // ... while (j != 0) { // ... } } Problem HW9C -- Put HW9A and HW9B together to solve the original Homework 8. That is, write PIC assembly for the following: x = 0 ; for (i=0; i<100; ++i) { j = V[i] ; while (j != 0) { x = x + (j & 0x3) ; j = j >> 2 ; } }