1 / 7

MIPS assembly

MIPS assembly. Exercise 2. How to implement this with only the instructions we learnt? if ($t1 > $t2) $t0 = $t1; else $t0 = $t2;. Exercise 2. # if ($t1 > $t2) $t0 = $t1; else $t0 = $t2; sub $t3, $t1, $t2 srl $t3, $t3, 31 bne $t3, $zero, L1 ori $t0, $t1, 0 j L2 L1:

myra
Download Presentation

MIPS assembly

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MIPS assembly

  2. Exercise 2 • How to implement this with only the instructions we learnt? if ($t1 > $t2) $t0 = $t1; else $t0 = $t2;

  3. Exercise 2 # if ($t1 > $t2) $t0 = $t1; else $t0 = $t2; sub $t3, $t1, $t2 srl $t3, $t3, 31 bne $t3, $zero, L1 ori $t0, $t1, 0 j L2 L1: ori $t0, $t2, 0 L2:

  4. slt, slti • slt $t3, $t1, $t2 – set $t3 to be 1 if $t1 < $t2; else clear $t3 to be 0. “Set Less Than.” • slti $t3, $t1, 100 – set $t3 to be 1 if $t1 < 100; else clear $t3 to be 0. • Using slt, the code is simpler.

  5. Using slt slt $t3, $t1, $t2 bne $t3, $zero, L21 ori $t0, $t1, 0 j L22 L21: ori $t0, $t2, 0 L22:

  6. Compiling a while loop in C • How to translate the following to MIPS assembly? • We first translate into a C program using if and goto week04-3.ppt

  7. Compiling a while loop in C • Assume that i and k correspond to registers $s3 and $s5 and starting address of array save is in $s6 week04-3.ppt

More Related