Add test for bgtz

This commit is contained in:
unlockable
2024-07-11 00:31:51 +08:00
parent 9071500240
commit 6791d6b7bb
3 changed files with 50 additions and 0 deletions

18
07test_bgtz.asm Normal file
View File

@@ -0,0 +1,18 @@
addi $s1, $zero, 2
nop
nop
nop
nop
start:
addi $s1, $s1, -1
nop
nop
nop
nop
bgtz $s1, start
nop
nop
nop
nop
end:
j end

16
07test_bgtz.txt Normal file
View File

@@ -0,0 +1,16 @@
20'd0: instruction <= 32'h20110002; // addi $s1, $zero, 2
20'd1: instruction <= 32'h00000000;
20'd2: instruction <= 32'h00000000;
20'd3: instruction <= 32'h00000000;
20'd4: instruction <= 32'h00000000; // start:
20'd5: instruction <= 32'h2231ffff; // addi $s1, $s1, -1
20'd6: instruction <= 32'h00000000;
20'd7: instruction <= 32'h00000000;
20'd8: instruction <= 32'h00000000;
20'd9: instruction <= 32'h00000000;
20'd10: instruction <= 32'h1e20fffa; // bgtz $s1, start
20'd11: instruction <= 32'h00000000;
20'd12: instruction <= 32'h00000000;
20'd13: instruction <= 32'h00000000;
20'd14: instruction <= 32'h00000000; // end:
20'd15: instruction <= 32'h0800000f; // j end

16
07test_bgtz_mars.txt Normal file
View File

@@ -0,0 +1,16 @@
20110002
00000000
00000000
00000000
00000000
2231ffff
00000000
00000000
00000000
00000000
1e20fffa
00000000
00000000
00000000
00000000
0800000f