mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
initial import
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
module nonblocking (clk,a,c);
|
||||
input clk;
|
||||
input a;
|
||||
output c;
|
||||
|
||||
wire clk;
|
||||
wire a;
|
||||
reg c;
|
||||
reg b;
|
||||
|
||||
always @ (posedge clk )
|
||||
begin
|
||||
b <= a;
|
||||
c <= b;
|
||||
end
|
||||
|
||||
endmodule
|
||||
Reference in New Issue
Block a user