Do you have any ideas which component use for if clause in digital logic What is the component for if-clause in digital logic?
What is the component for if-clause in digital logic?
108 views Asked by Kooss At
3
There are 3 answers
0
On
In VHDL: Your if-statement will be synthesized by a synthesizer who decides what to do with it. Mostly, if-statements are synthesized by generating a multiplexer. But keep in mind, that your synthesis tool might synthesize your if-statement to a more optimised structure of gates, that does not neccessarily resemble to a classical multiplexer.
You can try to synthesize your code and have a look at the RTL-schematic.
The answer they are looking for is probably multiplexer.