futilehdl/doc/examples/identity.fut

8 lines
70 B
Plaintext

module identity (
input wire a,
output wire x
)
{
assign x = a;
}