14 lines
161 B
Coq
14 lines
161 B
Coq
|
|
module test (
|
||
|
|
input CL,
|
||
|
|
input CSB
|
||
|
|
);
|
||
|
|
|
||
|
|
reg a;
|
||
|
|
|
||
|
|
specify specparam
|
||
|
|
tps = 0.0;
|
||
|
|
$setup(posedge CSB, edge[01,0x,x1,1x] CL, tps, a);
|
||
|
|
endspecify
|
||
|
|
|
||
|
|
endmodule
|