mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 20:18:20 +00:00
gowin: Add new types of oscillator
This commit is contained in:
parent
d11cb6901f
commit
ea6f562d49
|
@ -1632,3 +1632,20 @@ output OSCOUT;
|
||||||
|
|
||||||
parameter FREQ_DIV = 96;
|
parameter FREQ_DIV = 96;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
(* blackbox *)
|
||||||
|
module OSCW(OSCOUT);
|
||||||
|
output OSCOUT;
|
||||||
|
|
||||||
|
parameter FREQ_DIV = 80;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
(* blackbox *)
|
||||||
|
module OSCO(OSCOUT, OSCEN);
|
||||||
|
input OSCEN;
|
||||||
|
|
||||||
|
output OSCOUT;
|
||||||
|
|
||||||
|
parameter FREQ_DIV = 100;
|
||||||
|
parameter REGULATOR_EN = 1'b0;
|
||||||
|
endmodule
|
||||||
|
|
Loading…
Reference in a new issue