3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-02 21:46:07 +00:00

End of file fix

This commit is contained in:
Miodrag Milanovic 2026-06-23 07:23:41 +02:00
parent 3ac58b3ac1
commit 48a3dcc02a
304 changed files with 64 additions and 321 deletions

View file

@ -1,4 +1,3 @@
module a;
integer [31:0]w;
endmodule

View file

@ -4,4 +4,3 @@ task to (
);
endtask
endmodule

View file

@ -4,4 +4,3 @@ task to (
);
endtask
endmodule

View file

@ -1,4 +1,3 @@
module a;
wire [3]x;
endmodule

View file

@ -1,4 +1,3 @@
module a;
input x[2:0];
endmodule

View file

@ -3,4 +3,3 @@ initial
begin : label1
end: label2
endmodule

View file

@ -3,4 +3,3 @@ wire [5:0]x;
wire [3:0]y;
assign y = (4)55;
endmodule

View file

@ -3,4 +3,3 @@ wire [5:0]x;
wire [3:0]y;
assign y = x 55;
endmodule

View file

@ -1,3 +1,2 @@
module a(input wire x = 1'b0);
endmodule

View file

@ -1,4 +1,3 @@
module a #(p = 0)
();
endmodule