Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00089
/
top.v
blob: 88c420c0b4a4fcbff037b670cd94289b0f66cd11 [
file
] [
log
] [
blame
]
module
top
(
A
,
clk
,
rst
);
input clk
,
rst
;
output A
;
always
@(
posedge clk
,
posedge rst
)
begin
A
<=
'0'
;
end
;
// << like this
endmodule