pcs: Fix incorrect assignment type
This is the wrong kind of assignment to use. Fix it.
Fixes: 1d65661
("Add pmd")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
d8ce1652ae
commit
8f7c797800
|
@ -79,8 +79,8 @@ module pmd (
|
||||||
* posedge.
|
* posedge.
|
||||||
*/
|
*/
|
||||||
always @(posedge rx_clk_250) begin
|
always @(posedge rx_clk_250) begin
|
||||||
rx_p[1] = rx_p[0];
|
rx_p[1] <= rx_p[0];
|
||||||
rx_n[1] = rx_n[0];
|
rx_n[1] <= rx_n[0];
|
||||||
end
|
end
|
||||||
|
|
||||||
reg [2:0] rx_a, rx_b, rx_c, rx_d;
|
reg [2:0] rx_a, rx_b, rx_c, rx_d;
|
||||||
|
|
Loading…
Reference in New Issue