Skip to content

Commit 689bb7d

Browse files
committed
fpga_family/xilinx: add parameters to avoid simulation fail
Recent versions of Icarus throw an error if a parameter is used, but non existing in the module.
1 parent 2ebef17 commit 689bb7d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fpga_family/xilinx/IOBUF.v

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
module IOBUF (
1+
module IOBUF #(
2+
parameter integer DRIVE = 12,
3+
parameter IOSTANDARD = "DEFAULT",
4+
parameter SLEW = "SLOW"
5+
) (
26
output O,
37
inout IO,
48
input I,

0 commit comments

Comments
 (0)