mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-12 14:35:00 -07:00
BAD CODE: testing that CI pipeline catches verilog issues
This commit is contained in:
parent
07c2fb570c
commit
0a9b182ef7
|
@ -72,7 +72,7 @@ always #2 clk = !clk;
|
||||||
|
|
||||||
core dut(
|
core dut(
|
||||||
.clk(clk),
|
.clk(clk),
|
||||||
.reset(reset),
|
.reset(reset)
|
||||||
|
|
||||||
.mem_inst_addr(mem_inst_addr),
|
.mem_inst_addr(mem_inst_addr),
|
||||||
.mem_inst_data(mem_inst_data),
|
.mem_inst_data(mem_inst_data),
|
||||||
|
|
|
@ -9,7 +9,7 @@ _start:
|
||||||
lui x1, 0xfedcb # x1 = 0xfedcb000
|
lui x1, 0xfedcb # x1 = 0xfedcb000
|
||||||
|
|
||||||
# addi
|
# addi
|
||||||
addi x1, fx1, 0x789 # x1 = 0xfedcb789
|
addi x1, x1, 0x789 # x1 = 0xfedcb789
|
||||||
addi x2, x0, -1 # x2 = 0xffffffff
|
addi x2, x0, -1 # x2 = 0xffffffff
|
||||||
addi x3, x1, -0x777 # x3 = 0xfedcb012
|
addi x3, x1, -0x777 # x3 = 0xfedcb012
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user