standardize pattern conversion

This commit is contained in:
Zachary Snow
2020-07-21 18:05:27 -06:00
parent ed25534441
commit 5ad8de9ef7
3 changed files with 68 additions and 52 deletions
+7
View File
@@ -0,0 +1,7 @@
module top;
reg [1:0] w;
initial begin
w <= 2'b00;
$display("%b", w);
end
endmodule