diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-06-03 08:37:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 08:37:07 -0700 |
commit | 46ed0db2ec883a4ce330c81f321511e36e35c0b3 (patch) | |
tree | f4a5b3f6c72ffaa4a72b78a580c6d5949b62f37c /tests/arch/xilinx/xilinx_srl.v | |
parent | 577859fbdbefaabac4a3c61288264f2505261586 (diff) | |
parent | 60aa8049157eb4f0417022182aeb8c1581efe404 (diff) | |
download | yosys-46ed0db2ec883a4ce330c81f321511e36e35c0b3.tar.gz yosys-46ed0db2ec883a4ce330c81f321511e36e35c0b3.tar.bz2 yosys-46ed0db2ec883a4ce330c81f321511e36e35c0b3.zip |
Merge pull request #2080 from YosysHQ/eddie/fix_test_warnings
tests: reduce test warnings
Diffstat (limited to 'tests/arch/xilinx/xilinx_srl.v')
-rw-r--r-- | tests/arch/xilinx/xilinx_srl.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arch/xilinx/xilinx_srl.v b/tests/arch/xilinx/xilinx_srl.v index bc2a15ab2..29920da41 100644 --- a/tests/arch/xilinx/xilinx_srl.v +++ b/tests/arch/xilinx/xilinx_srl.v @@ -29,7 +29,7 @@ endmodule module $__XILINX_SHREG_(input C, D, E, input [1:0] L, output Q); parameter CLKPOL = 1; parameter ENPOL = 1; -parameter DEPTH = 1; +parameter DEPTH = 2; parameter [DEPTH-1:0] INIT = {DEPTH{1'b0}}; reg [DEPTH-1:0] r = INIT; wire clk = C ^ CLKPOL; |