Skip to content

Commit 6f23728

Browse files
committed
revert unnecessary changes
1 parent 380e922 commit 6f23728

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rtl/oddr.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ THE SOFTWARE.
3434
module oddr #
3535
(
3636
// target ("SIM", "GENERIC", "XILINX", "ALTERA")
37-
parameter TARGET = "XILINX",
37+
parameter TARGET = "GENERIC",
3838
// IODDR style ("IODDR", "IODDR2")
3939
// Use IODDR for Virtex-4, Virtex-5, Virtex-6, 7 Series, Ultrascale
4040
// Use IODDR2 for Spartan-6
41-
parameter IODDR_STYLE = "IODDR",
41+
parameter IODDR_STYLE = "IODDR2",
4242
// Width of register in bits
4343
parameter WIDTH = 1,
4444
parameter INSERT_BUFFERS = "FALSE"
@@ -87,11 +87,11 @@ if (TARGET == "XILINX") begin
8787
.R(1'b0),
8888
.S(1'b0)
8989
);
90-
end else if (IODDR_STYLE == "IODDR2") begin
90+
end else if (IODDR_STYLE == "IODDR2") begin
9191
ODDR2 #(
9292
.DDR_ALIGNMENT("C0"),
9393
.SRTYPE("ASYNC")
94-
)
94+
)
9595
oddr_inst (
9696
.Q(q_int[n]),
9797
.C0(clk),

0 commit comments

Comments
 (0)