diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-28 15:31:48 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-28 15:31:48 -0700 |
commit | 1b08f861b6f95dba561ec48f71d3ab5bc18f64f2 (patch) | |
tree | b08eebb56cfa49743504bfcb97d3778dedc13d9d /tests/xilinx/xilinx_srl.v | |
parent | 8d820a9884c0a58ee7817a2052d8b915578a7ba7 (diff) | |
parent | 52c4655de32c027e0542834d030ac951be10c8eb (diff) | |
download | yosys-1b08f861b6f95dba561ec48f71d3ab5bc18f64f2.tar.gz yosys-1b08f861b6f95dba561ec48f71d3ab5bc18f64f2.tar.bz2 yosys-1b08f861b6f95dba561ec48f71d3ab5bc18f64f2.zip |
Merge branch 'eddie/xilinx_srl' into xaig_arrival
Diffstat (limited to 'tests/xilinx/xilinx_srl.v')
-rw-r--r-- | tests/xilinx/xilinx_srl.v | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/xilinx/xilinx_srl.v b/tests/xilinx/xilinx_srl.v new file mode 100644 index 000000000..bc2a15ab2 --- /dev/null +++ b/tests/xilinx/xilinx_srl.v @@ -0,0 +1,40 @@ +module xilinx_srl_static_test(input i, clk, output [1:0] q); +reg head = 1'b0; +reg [3:0] shift1 = 4'b0000; +reg [3:0] shift2 = 4'b0000; + +always @(posedge clk) begin + head <= i; + shift1 <= {shift1[2:0], head}; + shift2 <= {shift2[2:0], head}; +end + +assign q = {shift2[3], shift1[3]}; +endmodule + +module xilinx_srl_variable_test(input i, clk, input [1:0] l1, l2, output [1:0] q); +reg head = 1'b0; +reg [3:0] shift1 = 4'b0000; +reg [3:0] shift2 = 4'b0000; + +always @(posedge clk) begin + head <= i; + shift1 <= {shift1[2:0], head}; + shift2 <= {shift2[2:0], head}; +end + +assign q = {shift2[l2], shift1[l1]}; +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-1:0] INIT = {DEPTH{1'b0}}; +reg [DEPTH-1:0] r = INIT; +wire clk = C ^ CLKPOL; +always @(posedge C) + if (E) + r <= { r[DEPTH-2:0], D }; +assign Q = r[L]; +endmodule |