fix: resolve OoO simulation timeout

This commit is contained in:
abnerhexu
2026-06-27 03:38:34 +00:00
parent 502803c37f
commit a2e0126199
68 changed files with 78250 additions and 210 deletions

View File

@@ -0,0 +1,21 @@
// Generated by CIRCT firtool-1.139.0
module BranchUnit(
input [2:0] io_funct3,
input [63:0] io_a,
io_b,
output io_taken
);
wire _io_taken_T_11 = io_funct3 == 3'h0 & io_a == io_b;
wire [7:0] _GEN =
{{io_a >= io_b},
{io_a < io_b},
{$signed(io_a) >= $signed(io_b)},
{$signed(io_a) < $signed(io_b)},
{_io_taken_T_11},
{_io_taken_T_11},
{io_a != io_b},
{_io_taken_T_11}};
assign io_taken = _GEN[io_funct3];
endmodule