X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fassignment.sv;h=81831a2cd54fe75751cbd095ef6653471a3ba388;hb=3cf4fdd4414b16466ffdedd47016aec8520d5162;hp=73483f776ec0448cb778beed02c8f576ed93a51d;hpb=8cf06d22508dc51c013b6dce81869db32d0bd4e3;p=sv2nmigen.git diff --git a/examples/assignment.sv b/examples/assignment.sv index 73483f7..81831a2 100644 --- a/examples/assignment.sv +++ b/examples/assignment.sv @@ -1,6 +1,6 @@ -module up_counter( - input i, - output o +module assignment( + output o, + input i ); assign o = i; endmodule