From bcc03b750ce540c3f610481bde12a18968d46956 Mon Sep 17 00:00:00 2001 From: omer1977 Date: Fri, 27 Sep 2019 12:49:12 -0400 Subject: [PATCH] fixed the comment for ori instruction --- lab1/unittests/rand_test1.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab1/unittests/rand_test1.asm b/lab1/unittests/rand_test1.asm index a2646e5..eee0ae2 100644 --- a/lab1/unittests/rand_test1.asm +++ b/lab1/unittests/rand_test1.asm @@ -23,7 +23,7 @@ and $a1, $t5, $t6 # $a1=15 or 0x0000000f or $a2, $t5, $t6 # $a2=31 or 0x0000001f -ori $a3, $a0, 3 # $a3=14 or 0x00000013 +ori $a3, $a0, 3 # $a3=19 or 0x00000013 slti $t0, $a0, 17 # $t0=1 addi $t0, $t0, 2 # $t0=3 or 0x00000003