Skip to content

Commit 7ad2f70

Browse files
author
Sebastien Bourdeauducq
committedFeb 13, 2013
m1crg: fix signal names
1 parent 5649e88 commit 7ad2f70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎load.jtag

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ cable milkymist
22
detect
33
instruction CFG_OUT 000100 BYPASS
44
instruction CFG_IN 000101 BYPASS
5-
pld load build/soc.bit
5+
pld load build/top.bit

‎verilog/m1crg/m1crg.v

+3-3
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ ODDR2 #(
204204
.INIT(1'b0),
205205
.SRTYPE("SYNC")
206206
) sd_clk_forward_p (
207-
.Q(sd_clk_out_p),
207+
.Q(ddr_clk_pad_p),
208208
.C0(clk2x_270),
209209
.C1(~clk2x_270),
210210
.CE(1'b1),
@@ -218,7 +218,7 @@ ODDR2 #(
218218
.INIT(1'b0),
219219
.SRTYPE("SYNC")
220220
) sd_clk_forward_n (
221-
.Q(sd_clk_out_n),
221+
.Q(ddr_clk_pad_n),
222222
.C0(clk2x_270),
223223
.C1(~clk2x_270),
224224
.CE(1'b1),
@@ -233,7 +233,7 @@ ODDR2 #(
233233
*/
234234

235235
always @(posedge pllout4)
236-
eth_clk_pad <= ~eth_clk_pad;
236+
eth_phy_clk_pad <= ~eth_phy_clk_pad;
237237

238238
/* Let the synthesizer insert the appropriate buffers */
239239
assign eth_rx_clk = eth_rx_clk_pad;

0 commit comments

Comments
 (0)
Please sign in to comment.