Behavioral representation
Specified using HDLs (e.g. Verilog or VHDL)
Hierarchy
- Algorithmic description
- Functional description
- Example: Adder carry (includes timing)
-
-
-
-
-
- Boolean equations
- Behavioral specification
module carry (co, a,b,c);
output co;
input a,b,c;
wire #10 co=(a&b)|(a&c)|(b&c)