futilehdl/doc/examples/identity.fut

8 lines
70 B
Plaintext
Raw Normal View History

2022-01-04 00:41:09 +00:00
module identity (
input wire a,
output wire x
)
{
assign x = a;
}