mirror of https://github.com/YosysHQ/yosys.git
Cleaned verilog code from not used defines
This commit is contained in:
parent
abb5a3a44d
commit
d6ef9b1a6b
|
@ -9,14 +9,8 @@ in
|
||||||
|
|
||||||
always @(posedge clk)
|
always @(posedge clk)
|
||||||
begin
|
begin
|
||||||
`ifndef BUG
|
|
||||||
out <= out >> 1;
|
out <= out >> 1;
|
||||||
out[7] <= in;
|
out[7] <= in;
|
||||||
`else
|
|
||||||
|
|
||||||
out <= out << 1;
|
|
||||||
out[7] <= in;
|
|
||||||
`endif
|
|
||||||
end
|
end
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Reference in New Issue