diff --git a/lib/emac/src/piso.vhd b/lib/emac/src/piso.vhd index 8efe620..6797125 100644 --- a/lib/emac/src/piso.vhd +++ b/lib/emac/src/piso.vhd @@ -85,7 +85,9 @@ end process; process(clk) begin if rising_edge(clk) then - if rdy = '1' then + if rst = '1' then + vld_pipe <= (others => '0'); + elsif rdy = '1' then vld_pipe <= (others => '0'); if din_vld = '1' then vld_pipe <= din_be;