Forum Discussion
Altera_Forum
Honored Contributor
15 years ago --- Quote Start --- Quartus II has a template menu option with some state machine implementations that you can look at. With a verilog or VHDL file open got to Edit --> Insert Template and choose the one you want to use. --- Quote End --- Thanks for the tip. I am using the Moore state machine now. My output is a 1bit reg. I want to send in one state two signals, "1" and "0" in the same state How can i do that? I can't just do Initial_State: begin out<= 1; out<= 0; end right? Thanks..