mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-13 01:16:16 +00:00
Added GP_PGA cell
This commit is contained in:
parent
0d2923cccd
commit
134e093e4e
1 changed files with 11 additions and 0 deletions
|
@ -153,6 +153,17 @@ module GP_LFOSC(input PWRDN, output reg CLKOUT);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
module GP_PGA(input wire VIN_P, input wire VIN_N, input wire VIN_SEL, output reg VOUT);
|
||||||
|
|
||||||
|
parameter GAIN = 1;
|
||||||
|
parameter INPUT_MODE = "SINGLE";
|
||||||
|
|
||||||
|
initial VOUT = 0;
|
||||||
|
|
||||||
|
//cannot simulate mixed signal IP
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
||||||
module GP_POR(output reg RST_DONE);
|
module GP_POR(output reg RST_DONE);
|
||||||
parameter POR_TIME = 500;
|
parameter POR_TIME = 500;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue