mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-17 11:26:18 +00:00
Merge pull request #1005 from smunaut/ice40_hfosc_trim
ice40/cells_sim.v: Add support for TRIM input to SB_HFOSC
This commit is contained in:
commit
3ef88ffbb2
1 changed files with 11 additions and 0 deletions
|
@ -930,10 +930,21 @@ endmodule
|
||||||
|
|
||||||
(* blackbox *)
|
(* blackbox *)
|
||||||
module SB_HFOSC(
|
module SB_HFOSC(
|
||||||
|
input TRIM0,
|
||||||
|
input TRIM1,
|
||||||
|
input TRIM2,
|
||||||
|
input TRIM3,
|
||||||
|
input TRIM4,
|
||||||
|
input TRIM5,
|
||||||
|
input TRIM6,
|
||||||
|
input TRIM7,
|
||||||
|
input TRIM8,
|
||||||
|
input TRIM9,
|
||||||
input CLKHFPU,
|
input CLKHFPU,
|
||||||
input CLKHFEN,
|
input CLKHFEN,
|
||||||
output CLKHF
|
output CLKHF
|
||||||
);
|
);
|
||||||
|
parameter TRIM_EN = "0b0";
|
||||||
parameter CLKHF_DIV = "0b00";
|
parameter CLKHF_DIV = "0b00";
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue