mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-28 17:59:12 +00:00
Problems/questions: - memory.ys: ERROR: Failed to import cell gate.mem.0.0.0 (type EG_LOGIC_DRAM16X4) to SAT database. Why EG_LOGIC_DRAM16X4, not AL_LOGIC_BRAM? - Internal cell type $_TBUF_ is present.
37 lines
493 B
Verilog
37 lines
493 B
Verilog
module dff
|
|
( input d, clk, output reg q );
|
|
always @( posedge clk )
|
|
q <= d;
|
|
endmodule
|
|
|
|
module dffe
|
|
( input d, clk, en, output reg q );
|
|
initial begin
|
|
q = 0;
|
|
end
|
|
always @( posedge clk )
|
|
if ( en )
|
|
q <= d;
|
|
endmodule
|
|
|
|
module top (
|
|
input clk,
|
|
input en,
|
|
input a,
|
|
output b,b1,
|
|
);
|
|
|
|
dff u_dff (
|
|
.clk (clk ),
|
|
.d (a ),
|
|
.q (b )
|
|
);
|
|
|
|
dffe u_ndffe (
|
|
.clk (clk ),
|
|
.en (en),
|
|
.d (a ),
|
|
.q (b1 )
|
|
);
|
|
|
|
endmodule
|