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:
Sean Anderson 2022-08-06 15:43:14 -04:00
parent d8ce1652ae
commit 8f7c797800
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ module pmd (
* posedge.
*/
always @(posedge rx_clk_250) begin
rx_p[1] = rx_p[0];
rx_n[1] = rx_n[0];
rx_p[1] <= rx_p[0];
rx_n[1] <= rx_n[0];
end
reg [2:0] rx_a, rx_b, rx_c, rx_d;