Basically title.
Part of a larger program, but I can't figure out how to remove just the first letter (it's always not a number; A, B, C, X, etc.), and is always followed by numbers. So essentially, I'm trying to get "x234" to "234".
I figured I could use lb $a0, 1($t0) to load the 2, then lb $a0, 2($t0) to load the 3, but I don't know how I could do that reliably for X character-long entries. I'm very new to MIPS (from a java background).
Is there any fairly simple way to do this in mips?