Sign in
foss-fpga-tools
/
third_party
/
yosys
/
refs/heads/mwk/xilinx-dsp48-sim
/
.
/
techlibs
/
ecp5
/
latches_map.v
blob: c28f88cf767b32807f3262c7c624dd3d08de10a1 [
file
] [
log
] [
blame
] [
edit
]
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