I'm trying to code in MIPS (MIPS Assembly Language) to calculate
the hamming distance between two integers. Ideally, the program
would ask for the user to type in the two integers. Then, the
program would calculate the hamming distance. Afterward, it would
ask if you'd like to find another hamming distance. If the user
says yes, it would loop back to the beginning and ask for two new
integers.
Below is the code that I've created so far. Guidance with...