mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
Remove noise from ice40/cells_sim.v
This commit is contained in:
parent
9398921af1
commit
4daa746797
|
@ -144,12 +144,8 @@ endmodule
|
||||||
// Positive Edge SiliconBlue FF Cells
|
// Positive Edge SiliconBlue FF Cells
|
||||||
|
|
||||||
module SB_DFF (output `SB_DFF_REG, input C, D);
|
module SB_DFF (output `SB_DFF_REG, input C, D);
|
||||||
`ifndef _ABC
|
|
||||||
always @(posedge C)
|
always @(posedge C)
|
||||||
Q <= D;
|
Q <= D;
|
||||||
`else
|
|
||||||
always @* Q <= D;
|
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module SB_DFFE (output `SB_DFF_REG, input C, E, D);
|
module SB_DFFE (output `SB_DFF_REG, input C, E, D);
|
||||||
|
@ -896,7 +892,6 @@ module SB_WARMBOOT (
|
||||||
);
|
);
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* nomem2reg *)
|
|
||||||
module SB_SPRAM256KA (
|
module SB_SPRAM256KA (
|
||||||
input [13:0] ADDRESS,
|
input [13:0] ADDRESS,
|
||||||
input [15:0] DATAIN,
|
input [15:0] DATAIN,
|
||||||
|
|
Loading…
Reference in a new issue