I want to be able to write a program that repeatedly prompts the user to enter an integer. The program determines if that numbers is perfect and then writes out a message saying if it is or not, then prompts once again.
I'll end the loop (and the entire program for that matter) when the user enters an integer which is less than one.
I'll try to use mnemonic names for registers (like $s0, $t3) and any extended assembly instructions but will ignore branch delays and load delays.
Does anyone have any suggestions on how exactly I would go about this? I know I obviously need a loop but am relatively new to this to I'm not sure how to really prompt the user for one and run it.
Thanks for any assistance.