aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/quicklogic/pp3_latches_map.v
blob: 240a3fb4ee994b41ea693d877400c777a7da2da3 (plain)
1
2
3
4
5
6
7
8
9
10
11
module \$_DLATCH_P_ (E, D, Q);
  wire [1023:0] _TECHMAP_DO_ = "simplemap; opt";
  input E, D;
  output Q = E ? D : Q;
endmodule

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