aboutsummaryrefslogtreecommitdiffstats
path: root/data/cells_yosys.v
blob: 48f9c66d819bb8a0b6e4f9c77943735b6df2e22a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Taken from yosys verilog files.

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