Forum Discussion
Altera_Forum
Honored Contributor
8 years ago --- Quote Start --- Hi, Is your board an Altera/terasic dev board or a custom one based on Cyclone IV ? If its the Altera/terasic one, then most likely the LEDs are all active low , meaning, a writing a '0' will turn ON the LED and '1' will turn OFF the LED. --- Quote End --- Looks like custome Dev Board ZEOWAA A-C4E6E10. Main problem in the part:
led <= (led << 1);
if I use explicit form like:
led <= (12'b000111011010 << 1);
it work pretty well on Dev Board.