Forum Discussion
Altera_Forum
Honored Contributor
16 years agoYou don't have connected the "button" input to your PIO
--- Quote Start --- .in_port_to_the_button_pio (button_n), --- Quote End --- or you should have this statement --- Quote Start --- assign button_n = ~button; --- Quote End --- The statement --- Quote Start --- assign led = ~led_n; --- Quote End --- should be --- Quote Start --- assign led_n = ~led; --- Quote End ---