X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/raggedstone/blobdiff_plain/899cd331b2b9816cfd09202e80717ca4016f0dd2..e687cadb7cace489b9920e045cd19ceb2ae8b01d:/dhwk/source/par_ser_con.vhd diff --git a/dhwk/source/par_ser_con.vhd b/dhwk/source/par_ser_con.vhd index 2f183d9..92a01c0 100644 --- a/dhwk/source/par_ser_con.vhd +++ b/dhwk/source/par_ser_con.vhd @@ -1,4 +1,4 @@ --- $Id: par_ser_con.vhd,v 1.3 2007-03-11 12:24:35 sithglan Exp $ +-- $Id: par_ser_con.vhd,v 1.4 2007-03-11 13:23:11 sithglan Exp $ library ieee; use ieee.std_logic_1164.all; @@ -43,7 +43,7 @@ begin process(PCI_CLOCK) begin - if (PCI_CLOCK'event and PCI_CLOCK = '1') then + if (rising_edge(PCI_CLOCK)) then if ("0000" < COUNT) then COUNT <= COUNT - 1; end if; @@ -115,7 +115,7 @@ begin process(PCI_CLOCK) begin - if (PCI_CLOCK'event and PCI_CLOCK = '1') then + if (rising_edge(PCI_CLOCK)) then SYNC <= SPC_RDY_IN; end if; end process;