]> git.zerfleddert.de Git - raggedstone/blame - heartbeat/source/sync.v
perl -p -i -e "s/PCI_CLOCK'event and PCI_CLOCK = '1'/rising_edge(PCI_CLOCK)/" *.vhd
[raggedstone] / heartbeat / source / sync.v
CommitLineData
95764a11 1module sync2 (clk, d, q);
2 input clk;
3 input d;
4 output q;
5 reg q;
6
7 always @(posedge clk)
8 begin
9 q <= d;
10 end
11endmodule
Impressum, Datenschutz