Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00763
/
top.v
blob: f52256d44e37caf9fcdcb8da120b0e83d7b1fdfd [
file
] [
log
] [
blame
]
module
top
(
input clk
,
a
,
b
);
always
@(
posedge clk
)
if
(
a
)
begin
:
scope
reg b_inv
=
~
b
;
end
endmodule