Use string type for string parameters

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-02-21 19:14:28 -08:00
parent 6154506c0a
commit 6a294cef2c
30 changed files with 60 additions and 60 deletions

View File

@@ -20,9 +20,9 @@ module ssio_sdr_in_diff #
// simulation (set to avoid vendor primitives)
parameter logic SIM = 1'b0,
// vendor ("GENERIC", "XILINX", "ALTERA")
parameter VENDOR = "XILINX",
parameter string VENDOR = "XILINX",
// device family
parameter FAMILY = "virtex7",
parameter string FAMILY = "virtex7",
// Width of register in bits
parameter WIDTH = 1
)