3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-01 04:58:54 +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

@ -21,4 +21,3 @@ always @(posedge clk) begin
end
endmodule

View file

@ -12,4 +12,3 @@ module aoi12(a, b, c, y);
output y;
assign y = ~((a & b) | c);
endmodule

View file

@ -18,4 +18,3 @@ module attrib01_foo(clk, rst, inp, out);
attrib01_bar bar_instance (clk, rst, inp, out);
endmodule

View file

@ -22,4 +22,3 @@ module attrib02_foo(clk, rst, inp, out);
attrib02_bar bar_instance (clk, rst, inp, out);
endmodule

View file

@ -25,4 +25,3 @@ module attrib03_foo(clk, rst, inp, out);
attrib03_bar # (.WIDTH(8)) bar_instance (clk, rst, inp, out);
endmodule

View file

@ -29,4 +29,3 @@ module attrib04_foo(clk, rst, inp, out);
attrib04_bar bar_instance (clk, rst, inp, out);
endmodule

View file

@ -18,4 +18,3 @@ module attrib05_foo(clk, rst, inp, out);
attrib05_bar bar_instance ( (* clock_connected *) clk, rst, (* this_is_the_input *) inp, out);
endmodule

View file

@ -20,4 +20,3 @@ module attrib06_foo(clk, rst, inp_a, inp_b, out);
attrib06_bar bar_instance (clk, rst, inp_a, inp_b, out);
endmodule

View file

@ -18,4 +18,3 @@ module attri07_foo(clk, rst, inp_a, inp_b, out);
else out <= attrib07_do_add (* combinational_adder *) (inp_a, inp_b);
endmodule

View file

@ -19,4 +19,3 @@ module attrib08_foo(clk, rst, inp, out);
(* my_module_instance = 99 *)
attrib08_bar bar_instance (clk, rst, inp, out);
endmodule

View file

@ -23,4 +23,3 @@ module attrib09_foo(clk, rst, inp, out);
attrib09_bar bar_instance (clk, rst, inp, out);
endmodule

View file

@ -101,5 +101,3 @@ always @(posedge clk, posedge preset, posedge clear) begin
q <= d;
end
endmodule

View file

@ -66,4 +66,3 @@ begin
end
endmodule

View file

@ -24,4 +24,3 @@ assign y2 = b;
assign y3 = c;
assign y4 = d;
endmodule

View file

@ -59,4 +59,3 @@ module i2c_test02(clk, slave_wait, clk_cnt, cmd, cmd_stop, cnt);
cmd_stop <= #1 cmd;
endmodule

View file

@ -76,4 +76,3 @@ begin
end
endmodule

View file

@ -38,4 +38,3 @@ module MyMem #(
end
endmodule

View file

@ -317,4 +317,3 @@ module memtest13 (
end
end
endmodule

View file

@ -80,4 +80,3 @@ module select_leaves(input R, C, D, output reg Q);
else
Q <= Q ? Q : D ? D : Q;
endmodule

View file

@ -31,4 +31,3 @@ assign cmd_valid = (uart_state==RX_CMD) & xfer_done;
assign xfer_done = uart_state!=RX_SYNC;
endmodule

View file

@ -50,4 +50,3 @@ output [width-1:0] out;
assign out = in + step;
endmodule

View file

@ -81,4 +81,3 @@ end else begin
end
endmodule

View file

@ -45,4 +45,3 @@ end
endfunction
endmodule

View file

@ -28,4 +28,3 @@ specparam c=1:2:3;
endspecify
endmodule

View file

@ -33,4 +33,3 @@ always @*
end
endmodule

View file

@ -41,4 +41,3 @@ always @*
endcase
endmodule

View file

@ -79,4 +79,3 @@ endmodule
// output signed [5:0] y;
// assign y = -(5'd27);
// endmodule