MIPS Basic For Loop
问题 im trying to implement this java code into MIPS assembly language and i am quite confused. this is what i have so far: java code: for (int c = 1; c <= rows; c++) { number = highestValue; // reset number to the highest value from previous line for (i = 0; i < c; i++) { System.out.print(++number + " "); } highestValue = number; // setting the highest value in line assembly code: .text # tells the program where the code begins move $t0, $zero # t0=0 move $t1, $zero # this will be similar to "int