Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
testarch
/
primitives
/
ff
/
ff.sim.v
blob: bec66e749c856e5781429d61057051e31a2cfeaa [
file
] [
log
] [
blame
] [
edit
]
module
FF
(
clk
,
D
,
Q
);
(*
PORT_CLASS
=
"clock"
*)
input clk
;
(*
PORT_CLASS
=
"D"
*)
(*
SETUP
=
"clk 10e-12"
*)
input D
;
(*
PORT_CLASS
=
"Q"
*)
(*
CLK_TO_Q
=
"clk 10e-12"
*)
output reg Q
;
always
@(
posedge clk
)
Q
<=
D
;
endmodule