Sign in
foss-fpga-tools
/
third_party
/
yosys
/
67be62a957c565bfa03f084c8f110d65ca14196b
/
.
/
tests
/
asicworld
/
code_tidbits_blocking.v
blob: e13b72cc7d5a30aa98f56362bccf355225a0bd01 [
file
] [
log
] [
blame
]
module
blocking
(
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