Skip to main content
deleted 160 characters in body
Source Link
apalopohapa
  • 8.6k
  • 2
  • 32
  • 40

Inside ringcounter, q3 is being assigned by both the concurrent assignment q3<='1' and DFF4. You can't have both at the same time.

To resolve this you should do as you did with the DFF, initialize the output value when the reset signal is asserted (and remove the concurrent assignment).

Inside ringcounter, q3 is being assigned by both the concurrent assignment q3<='1' and DFF4. You can't have both at the same time.

To resolve this you should do as you did with the DFF, initialize the output value when the reset signal is asserted (and remove the concurrent assignment).

Inside ringcounter, q3 is being assigned by both the concurrent assignment q3<='1' and DFF4. You can't have both at the same time.

Source Link
apalopohapa
  • 8.6k
  • 2
  • 32
  • 40

Inside ringcounter, q3 is being assigned by both the concurrent assignment q3<='1' and DFF4. You can't have both at the same time.

To resolve this you should do as you did with the DFF, initialize the output value when the reset signal is asserted (and remove the concurrent assignment).