m1crg: fix signal names

This commit is contained in:
Sebastien Bourdeauducq 2013-02-13 23:59:35 +01:00
parent 5649e88a90
commit 7ad2f7081b
2 changed files with 4 additions and 4 deletions

View File

@ -2,4 +2,4 @@ cable milkymist
detect detect
instruction CFG_OUT 000100 BYPASS instruction CFG_OUT 000100 BYPASS
instruction CFG_IN 000101 BYPASS instruction CFG_IN 000101 BYPASS
pld load build/soc.bit pld load build/top.bit

View File

@ -204,7 +204,7 @@ ODDR2 #(
.INIT(1'b0), .INIT(1'b0),
.SRTYPE("SYNC") .SRTYPE("SYNC")
) sd_clk_forward_p ( ) sd_clk_forward_p (
.Q(sd_clk_out_p), .Q(ddr_clk_pad_p),
.C0(clk2x_270), .C0(clk2x_270),
.C1(~clk2x_270), .C1(~clk2x_270),
.CE(1'b1), .CE(1'b1),
@ -218,7 +218,7 @@ ODDR2 #(
.INIT(1'b0), .INIT(1'b0),
.SRTYPE("SYNC") .SRTYPE("SYNC")
) sd_clk_forward_n ( ) sd_clk_forward_n (
.Q(sd_clk_out_n), .Q(ddr_clk_pad_n),
.C0(clk2x_270), .C0(clk2x_270),
.C1(~clk2x_270), .C1(~clk2x_270),
.CE(1'b1), .CE(1'b1),
@ -233,7 +233,7 @@ ODDR2 #(
*/ */
always @(posedge pllout4) always @(posedge pllout4)
eth_clk_pad <= ~eth_clk_pad; eth_phy_clk_pad <= ~eth_phy_clk_pad;
/* Let the synthesizer insert the appropriate buffers */ /* Let the synthesizer insert the appropriate buffers */
assign eth_rx_clk = eth_rx_clk_pad; assign eth_rx_clk = eth_rx_clk_pad;