Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
rptconcat2.v
blob: bf00df5eeb71c419a7a5e9e2ff8cb8a02a729f78 [
file
] [
log
] [
blame
]
module
main
();
reg
[
3
:
0
]
d
,
e
;
initial
begin
d
<=
{
4
{
1
'b1}};
e = {4{1'
b1
}};
#1;
$display
(
"%b %b"
,
d
,
e
);
if
(
d
!==
e
)
begin
$display
(
"FAILED -- %b !== %b"
,
d
,
e
);
$finish
;
end
$display
(
"PASSED"
);
end
endmodule