diff options
Diffstat (limited to 'tests/simple/mem_arst.v')
-rw-r--r-- | tests/simple/mem_arst.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/mem_arst.v b/tests/simple/mem_arst.v index 4022f57cd..9bd38fcb3 100644 --- a/tests/simple/mem_arst.v +++ b/tests/simple/mem_arst.v @@ -10,7 +10,7 @@ module MyMem #( output [DataWidth-1:0] Data_o, input WR_i); - reg Data_o; + reg [DataWidth-1:0] Data_o; localparam Size = 2**AddrWidth; |