From be31d74f74d864802d95b3ff3de77406c0e0f133 Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Thu, 9 Feb 2023 14:55:24 +0000 Subject: [PATCH] Fixed warning about standards compliance --- cpu/memory.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/memory.v b/cpu/memory.v index 752a6ee..b33d009 100644 --- a/cpu/memory.v +++ b/cpu/memory.v @@ -1,5 +1,5 @@ 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 $readmemh("boot_code.txt", memory); end