From 8d6d5c30d9f39ce5b15d1bd3f3a528b38f2f9f9c Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 31 Jul 2015 10:40:09 +0200 Subject: Added WORDS parameter to $meminit --- techlibs/common/simlib.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'techlibs/common') diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index ddc7fe3be..9de71e6f9 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -1536,11 +1536,12 @@ module \$meminit (ADDR, DATA); parameter MEMID = ""; parameter ABITS = 8; parameter WIDTH = 8; +parameter WORDS = 1; parameter PRIORITY = 0; input [ABITS-1:0] ADDR; -input [WIDTH-1:0] DATA; +input [WORDS*WIDTH-1:0] DATA; initial begin if (MEMID != "") begin -- cgit v1.2.3