17 lines
319 B
Plaintext
17 lines
319 B
Plaintext
|
package ClockOut;
|
||
|
|
||
|
interface ClockOut;
|
||
|
method bit value();
|
||
|
endinterface
|
||
|
|
||
|
import "BVI" ClockOut =
|
||
|
module mkClockOut(ClockOut);
|
||
|
default_reset no_reset;
|
||
|
default_clock clk (CLK, (* unused *)GATE);
|
||
|
|
||
|
method CLK_BIT value() clocked_by(no_clock);
|
||
|
|
||
|
schedule value CF value;
|
||
|
endmodule
|
||
|
endpackage
|