Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00175
/
top.v
blob: a3d1ca2da6a9f6896c6ab50080c262d6ea6d2328 [
file
] [
log
] [
blame
]
module
top
(
C
,
GC
,
E
);
input C
;
output GC
;
input E
;
reg ED
;
always@
(*)
begin
if
(~
C
)
ED
=
E
;
end
assign GC
=
C
&
ED
;
endmodule