Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
simple
/
shregmap_error
/
top.v
blob: b6f764e9a6c7f181084c53010c182934cecc2b0e [
file
] [
log
] [
blame
]
module
top
(
out
,
clk
,
in
);
output
[
7
:
0
]
out
;
input clk
,
in
;
reg
[
7
:
0
]
out
;
always
@(
posedge clk
)
begin
`ifndef BUG
out <= out << 1;
out[0] <= in;
`
else
out
<=
8
'bZZZZZZZZ;
`endif
end
endmodule