process (PCI_CLOCK)
begin
- if (PCI_CLOCK'event and PCI_CLOCK = '1') then
+ if (rising_edge(PCI_CLOCK)) then
FF1_S_EFn <= not S_EFn;
FF1_S_HFn <= not S_HFn;
FF1_S_FFn <= not S_FFn;
process (PCI_CLOCK)
begin
- if (PCI_CLOCK'event and PCI_CLOCK = '1') then
+ if (rising_edge(PCI_CLOCK)) then
if HOLD = '0' then
FF2_S_EFn <= FF1_S_EFn;
FF2_S_HFn <= FF1_S_HFn;