8 lines
84 B
VHDL
8 lines
84 B
VHDL
ARCHITECTURE sim OF inverterIn IS
|
|
BEGIN
|
|
|
|
out1 <= NOT in1;
|
|
|
|
END ARCHITECTURE sim;
|
|
|