Forum Discussion
Altera_Forum
Honored Contributor
18 years agoDo you want only combinational logic or do you want hex_out to be flip-flops? You've combined the constructs for just combinational logic and logic with flops.
If you want just combinational only, drop the CLK references, and drop the "else hex_out <=("0000000000...000");" fragment If you want logic followed by flops, change the sensitivity list for the process to be CLK, not data_b, AND drop the else hex_out <=("0000000000...000");" fragment. \c