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