SystemVerilog tweaks to appease Quartus and make Quartus synthesis work

This commit is contained in:
wgulian3
2020-01-24 06:08:00 -05:00
parent 60f0cfe215
commit e9cdc6e5af
18 changed files with 1665 additions and 66 deletions

View File

@@ -9,9 +9,10 @@ module VX_lsu_addr_gen (
genvar index;
for (index = 0; index < `NT; index = index + 1)
begin
generate
for (index = 0; index < `NT; index = index + 1) begin : addresses
assign address[index] = base_address[index] + offset;
end
endgenerate
endmodule