]> git.zerfleddert.de Git - raggedstone/blobdiff - dhwk_old/source/sync.v
dhwk
[raggedstone] / dhwk_old / source / sync.v
diff --git a/dhwk_old/source/sync.v b/dhwk_old/source/sync.v
new file mode 100644 (file)
index 0000000..798d742
--- /dev/null
@@ -0,0 +1,11 @@
+module sync2 (clk, d, q);
+       input clk;
+       input d;
+       output q;
+       reg     q;
+
+       always @(posedge clk)
+       begin
+               q <= d;
+       end
+endmodule
Impressum, Datenschutz