Fixed warning about standards compliance

This commit is contained in:
(Tim) Efthimis Kritikos 2023-02-09 14:55:24 +00:00
parent a166efec9c
commit be31d74f74

View File

@ -1,5 +1,5 @@
module rom(input [19:0] address,output wire [15:0] data ,input rd,input cs); module rom(input [19:0] address,output wire [15:0] data ,input rd,input cs);
reg [15:0] memory [15:0]; reg [15:0] memory [0:15];
initial begin initial begin
$readmemh("boot_code.txt", memory); $readmemh("boot_code.txt", memory);
end end