Sign in
foss-fpga-tools
/
third_party
/
yosys
/
6cdea425b81fcfe1eec20cbfc4c4e27d46cb641d
/
.
/
tests
/
asicworld
/
code_tidbits_nonblocking.v
blob: 4a0d365e0dae37851fd8f5e234878894d1f7b7d2 [
file
] [
log
] [
blame
]
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