mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-18 18:36:43 +00:00
Added GP_DAC cell
This commit is contained in:
parent
baae472b83
commit
52a738a544
1 changed files with 8 additions and 0 deletions
|
@ -120,6 +120,14 @@ module GP_COUNT14_ADV(input CLK, input RST, output reg OUT,
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
module GP_DAC(input[7:0] DIN, input wire VREF, output reg VOUT);
|
||||||
|
|
||||||
|
initial VOUT = 0;
|
||||||
|
|
||||||
|
//analog hard IP is not supported for simulation
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
||||||
module GP_DELAY(input IN, output reg OUT);
|
module GP_DELAY(input IN, output reg OUT);
|
||||||
|
|
||||||
parameter DELAY_STEPS = 1;
|
parameter DELAY_STEPS = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue