summaryrefslogtreecommitdiff
path: root/techlibs/ecp5/latches_map.v
blob: c28f88cf767b32807f3262c7c624dd3d08de10a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
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