Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00997
/
top.v
blob: 2b4c7e0b8fe2d4df05ebca7b744f14b9ecdd234f [
file
] [
log
] [
blame
]
module
top
(
y
,
clk
,
wire4
);
output wire
[
1
:
0
]
y
;
input clk
;
input
signed
wire4
;
reg
[
1
:
0
]
reg10
=
0
;
always
@(
posedge clk
)
begin
reg10
<=
wire4
;
end
assign y
=
reg10
;
endmodule