views:

43

answers:

1

what does the instruction clear $t0 perform in MIPS?I mean what is the actual MIPS instruction for this pseudo-instruction?

+2  A: 

It does this:

add  $t0, $zero, $zero

Edit: I found a reference here.

Mahmoud