I'm working on replicating a simple form of debugging in MIPS similar to javascript. I am wondering how I can achieve the equivalent of this ($t0
represents a javascript variable here):
console.log($t0);
In simpler terms, I am looking for the method to display the content of a variable on the console in MIPS.