1
0
mirror of synced 2026-01-26 20:23:59 +00:00
Files
YosysHQ.yosys/techlibs/ice40/latches_map.v
2016-05-06 23:02:37 +02:00

12 lines
258 B
Verilog

module \$_DLATCH_N_ (E, D, Q);
wire [1023:0] _TECHMAP_DO_ = "simplemap; opt";
input E, D;
output Q = !E ? D : Q;
endmodule
module \$_DLATCH_P_ (E, D, Q);
wire [1023:0] _TECHMAP_DO_ = "simplemap; opt";
input E, D;
output Q = E ? D : Q;
endmodule