1.)Using the SR0 instruction write the vbc1 assembly code that displays the One-Hot counter from left to right.
2.)Write the VBC1 assembly code that resembles the following behavior: (remember that 2 integers being divided returns an integer and not a float. Therfore 15/2 = 7 and NOT 7.5)
int i = 15;
int j = 0;
while(i != 0)
{
i = i/2;
j = j+1;
printf("%i",j)
}