Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
frontends
/
read_liberty_tech
/
testbench.v
blob: 6df2cf1a886902011ccb6977c5842215f6486478 [
file
]
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