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:
parent
3ac58b3ac1
commit
48a3dcc02a
304 changed files with 64 additions and 321 deletions
|
|
@ -21,4 +21,3 @@ always @(posedge clk) begin
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -12,4 +12,3 @@ module aoi12(a, b, c, y);
|
|||
output y;
|
||||
assign y = ~((a & b) | c);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -18,4 +18,3 @@ module attrib01_foo(clk, rst, inp, out);
|
|||
|
||||
attrib01_bar bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -22,4 +22,3 @@ module attrib02_foo(clk, rst, inp, out);
|
|||
|
||||
attrib02_bar bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -25,4 +25,3 @@ module attrib03_foo(clk, rst, inp, out);
|
|||
|
||||
attrib03_bar # (.WIDTH(8)) bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -29,4 +29,3 @@ module attrib04_foo(clk, rst, inp, out);
|
|||
|
||||
attrib04_bar bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ module attrib08_foo(clk, rst, inp, out);
|
|||
(* my_module_instance = 99 *)
|
||||
attrib08_bar bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -23,4 +23,3 @@ module attrib09_foo(clk, rst, inp, out);
|
|||
|
||||
attrib09_bar bar_instance (clk, rst, inp, out);
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -101,5 +101,3 @@ always @(posedge clk, posedge preset, posedge clear) begin
|
|||
q <= d;
|
||||
end
|
||||
endmodule
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -66,4 +66,3 @@ begin
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -24,4 +24,3 @@ assign y2 = b;
|
|||
assign y3 = c;
|
||||
assign y4 = d;
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -59,4 +59,3 @@ module i2c_test02(clk, slave_wait, clk_cnt, cmd, cmd_stop, cnt);
|
|||
cmd_stop <= #1 cmd;
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -76,4 +76,3 @@ begin
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -38,4 +38,3 @@ module MyMem #(
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -317,4 +317,3 @@ module memtest13 (
|
|||
end
|
||||
end
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -80,4 +80,3 @@ module select_leaves(input R, C, D, output reg Q);
|
|||
else
|
||||
Q <= Q ? Q : D ? D : Q;
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -31,4 +31,3 @@ assign cmd_valid = (uart_state==RX_CMD) & xfer_done;
|
|||
assign xfer_done = uart_state!=RX_SYNC;
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -50,4 +50,3 @@ output [width-1:0] out;
|
|||
assign out = in + step;
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -81,4 +81,3 @@ end else begin
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -45,4 +45,3 @@ end
|
|||
endfunction
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -28,4 +28,3 @@ specparam c=1:2:3;
|
|||
endspecify
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -33,4 +33,3 @@ always @*
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -41,4 +41,3 @@ always @*
|
|||
endcase
|
||||
|
||||
endmodule
|
||||
|
||||
|
|
|
|||
|
|
@ -79,4 +79,3 @@ endmodule
|
|||
// output signed [5:0] y;
|
||||
// assign y = -(5'd27);
|
||||
// endmodule
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue