I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem,

Translate this code into MIPS machine

once_more:
    lw $5, 48($6)
    sub $5, $5, $2
    bne $5, $0, once_more

Now the problem I am facing is that I have no idea what should be the value of the registers in this problem (I only studied $t0-$t7(8-15) and $s0-$s7 (16-23) values). Can anyone please help me with the values of these registers? Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Based on this document, I think the registers being referenced are as follows:

  • $5 -> $a1
  • $6 -> $a2
  • $2 -> $v0

$0 is the $zero register.

$a- registers hold arguments, while $v1 registers hold results. One of the purposes of these registers is for use by syscalls; for example, the print_int syscall will print the value in $a0 as an integer.

Translating these to machine code will mean that you need to convert the assembly statement into the binary machine equivalent. The MIPS Green Card will help you here. Look at the "Basic Instruction Formats" section for an explanation of how the instructions are laid out in binary.

link|improve this answer
But what about $5,$6 and $2? – Startup Crazy Aug 9 '11 at 18:20
I've updated my answer to include $2. – Feanor Aug 9 '11 at 19:05
feedback

Your Answer

 
or
required, but never shown

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