fix: resolve OoO simulation timeout
This commit is contained in:
15
generated-ooo/WriteBackStage.sv
Normal file
15
generated-ooo/WriteBackStage.sv
Normal file
@@ -0,0 +1,15 @@
|
||||
// Generated by CIRCT firtool-1.139.0
|
||||
module WriteBackStage(
|
||||
input io_valid,
|
||||
input [5:0] io_physDest,
|
||||
input [63:0] io_data,
|
||||
output io_wen,
|
||||
output [5:0] io_waddr,
|
||||
output [63:0] io_wdata
|
||||
);
|
||||
|
||||
assign io_wen = io_valid;
|
||||
assign io_waddr = io_physDest;
|
||||
assign io_wdata = io_data;
|
||||
endmodule
|
||||
|
||||
Reference in New Issue
Block a user