Sign in
◑
Theme
foss-fpga-tools
/
third_party
/
vtr-verilog-to-routing
/
2df20a2e7c1d22850378ddf1f06e2e1267f6bcf9
/
.
/
vtr_flow
/
benchmarks
/
microbenchmarks
/
d_flip_flop.v
blob: 31ea5871a5beb24acf170a850ae571cc359ffa81 [
file
]
module
d_flip_flop
(
clk
,
q
,
d
);
input clk
;
input q
;
output d
;
reg temp
;
always
@
(
posedge clk
)
begin
d
<=
q
;
end
endmodule