Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- Also notice that your design is all combinatorial. Nothing wrong about that but once you integrate with registers then you may decide to add registers. Moreover you can reduce adder/subtractor to one adder only by negating the input (negation require invert and add 1, a small adder): --- Quote End --- You mean like this?: ALU: process(clk) begin if rising_edge(clk) .... end if; end process;