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