The title pretty much sums this up. I am writing a program in 32-bit MIPS Assembly Language (using the MARS emulator) for a school project and I'm having zero luck reading in int values > 2,147,483,647.

I spent a decent amount of time hunting around the internet and in my book to no avail. This is not central to the assignment (which, if you happen to know it is impossible, you probably already realized) but curiosity is killing this cat. Now that I've hit this brick wall, I must know for sure.

Notes:

  1. I'm specifically looking for a way to grab an unsigned int as opposed to taking a float or a double.
  2. The standard code for grabbing an int with syscall:

    li $v0, 5
    syscall
    move $t0, $v0
    
  3. The error that occurs when 2 500 000 000 is passed at prompt for integer:

    Error in C:\DEV\....... line 57: Runtime exception at 
    0x004000034: invalid integer input (syscall 5)
    

Help me Obi-Wan, you're my only hope!

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You'll need to use a different system call -- MARS is throwing the exception, not anything "inside" the MIPS CPU. Try, for instance, syscalls 8 or 12 (read string and read character). Note that, as a result, you'll have to implement a lot more of the parsing yourself to make these work.

Alternatively, you might try reading a double (syscall 7) and converting it to an integer...

There's a full list of MARS syscalls online at:

http://courses.missouristate.edu/KenVollmar/MARS/Help/SyscallHelp.html

link|improve this answer
That's a good point about the source of the exception. As for the suggestion to either read in as a string and parse the value or use a different number format - I've considered this and, were this central to the assignment, I would; as it stands, I'm just curious if there is a supported way to read unsigned ints via syscall. – IamChuckB Oct 7 '11 at 4:51
I've edited a link to a full list of MARS syscalls into my reply. I don't see anything in there that looks applicable, unfortunately. – duskwuff Oct 7 '11 at 6:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.