Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
frontends
/
read_liberty
/
testbench.v
blob: 6df2cf1a886902011ccb6977c5842215f6486478 [
file
] [
log
] [
blame
]
module
testbench
;
reg a
;
wire b
;
initial
begin
// $dumpfile("testbench.vcd");
// $dumpvars(0, testbench);
#5 a = 0;
repeat
(
10000
)
begin
#5 a = ~a;
end
$display
(
"OKAY"
);
end
top uut
(
.
A
(
a
),
.
Y
(
b
)
);
assert_comb b_test
(.
A
(~
a
),.
B
(
b
));
endmodule