3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-04 14:36:10 +00:00

Remove trailing whitespaces

This commit is contained in:
Miodrag Milanovic 2026-06-23 07:24:59 +02:00
parent 48a3dcc02a
commit a689342207
317 changed files with 3136 additions and 3136 deletions

View file

@ -4,7 +4,7 @@ parameter PATH = "DEFAULT";
always @(posedge clk) begin
if (PATH=="DEFAULT")
c <= a;
else
else
c <= b;
end

View file

@ -1,4 +1,4 @@
verific -sv -lib +/quicklogic/qlf_k6n10f/dsp_sim.v
verific -sv -lib +/quicklogic/qlf_k6n10f/dsp_sim.v
verific -sv <<EOF
module top (
@ -13,7 +13,7 @@ module top (
input wire [2:0] output_select,
input wire register_inputs
);
// module instantiation
QL_DSP2_MULT_REGIN_REGOUT #(
.MODE_BITS(80'h1232324)

View file

@ -75,7 +75,7 @@ entity test is
-- NATURAL type
natural_in : in NATURAL;
natural_out : out NATURAL;
-- POSITIVE type
positive_in : in POSITIVE;
positive_out : out POSITIVE

View file

@ -6,15 +6,15 @@ module top (
always @ (posedge clk)
begin
case (currentstate)
5'd1,5'd2, 5'd3:
begin
5'd1,5'd2, 5'd3:
begin
o <= 2'b01;
end
end
5'd4:
begin
o <= 2'b10;
end
5'd5,5'd6,5'd7:
5'd5,5'd6,5'd7:
begin
o <= 2'b11;
end

View file

@ -1,12 +1,12 @@
verific -cfg db_abstract_case_statement_synthesis 0
read -sv case.sv
verific -import top
verific -import top
prep
rename top gold
verific -cfg db_abstract_case_statement_synthesis 1
read -sv case.sv
verific -import top
verific -import top
prep
rename top gate

View file

@ -8,6 +8,6 @@ endmodule
module top (input clk, input [3:0] addr, output [7:0] data, input [3:0] f_addr, input [7:0] f_data);
sub_rom u_sub_rom (clk, addr, data);
always @(posedge clk)
always @(posedge clk)
assume(u_sub_rom.mem[f_addr] == f_data);
endmodule

View file

@ -1,12 +1,12 @@
verific -cfg db_abstract_case_statement_synthesis 0
read -sv range_case.sv
verific -import top
verific -import top
proc
rename top gold
verific -cfg db_abstract_case_statement_synthesis 1
read -sv range_case.sv
verific -import top
verific -import top
proc
rename top gate

View file

@ -47,7 +47,7 @@ architecture rtl of rom_example is
attribute rom_style : string;
attribute rom_style of data : signal is "block";
begin
p_rom : process(clk)
begin
if rising_edge(clk) then
@ -63,7 +63,7 @@ begin
end case;
end if;
end process p_rom;
end architecture rtl;
EOF
hierarchy -top rom_example