cleanup, add example output
[sv2nmigen.git] / examples / assignment.sv
1 module assignment(
2 output o,
3 input i
4 );
5 assign o = i;
6 endmodule