X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/raggedstone/blobdiff_plain/899cd331b2b9816cfd09202e80717ca4016f0dd2..e687cadb7cace489b9920e045cd19ceb2ae8b01d:/dhwk/source/pci/interrupt.vhd diff --git a/dhwk/source/pci/interrupt.vhd b/dhwk/source/pci/interrupt.vhd index a3709b6..5d3b473 100644 --- a/dhwk/source/pci/interrupt.vhd +++ b/dhwk/source/pci/interrupt.vhd @@ -75,7 +75,7 @@ begin FF_A <= "00000000"; FF_B <= "00000000"; - elsif (PCI_CLOCK'event and PCI_CLOCK = '1') then + elsif (rising_edge(PCI_CLOCK)) then if (RESET = '1') then SET <= "00000000"; FF_A <= "00000000"; @@ -105,7 +105,7 @@ begin if (PCI_RSTn = '0') then REG <= "00000000"; - elsif(PCI_CLOCK'event and PCI_CLOCK = '1') then + elsif(rising_edge(PCI_CLOCK)) then if(RESET = '1') then REG <= "00000000"; @@ -132,7 +132,7 @@ begin process (PCI_CLOCK) begin - if(PCI_CLOCK'event and PCI_CLOCK = '1') then + if(rising_edge(PCI_CLOCK)) then SIG_PROPAGATE_INT_SECOND <= not SIG_PROPAGATE_INT; end if; end process;