mirror of https://github.com/YosysHQ/yosys.git
Make SV2017 compliant courtesy of @wsnyder
This commit is contained in:
parent
2666482282
commit
23fcfd0adb
|
@ -7,11 +7,9 @@ module MyMem #(
|
|||
input Clk_i,
|
||||
input [AddrWidth-1:0] Addr_i,
|
||||
input [DataWidth-1:0] Data_i,
|
||||
output [DataWidth-1:0] Data_o,
|
||||
output reg [DataWidth-1:0] Data_o,
|
||||
input WR_i);
|
||||
|
||||
reg [DataWidth-1:0] Data_o;
|
||||
|
||||
localparam Size = 2**AddrWidth;
|
||||
|
||||
(* mem2reg *)
|
||||
|
|
Loading…
Reference in New Issue