]> cvs.zerfleddert.de Git - raggedstone/blob - heartbeat/source/pfs.v
Adding a test bench back that isn't a test bench. I shouldn't have deleted in
[raggedstone] / heartbeat / source / pfs.v
1 module pfs2 (clk, a, b);
2 input clk;
3 input a;
4 output b;
5 reg b;
6
7 always @(posedge clk)
8 begin
9 b <= a;
10 end
11 endmodule
Impressum, Datenschutz