mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-13 17:36:16 +00:00
This commit is contained in:
commit
34195f281f
1 changed files with 7 additions and 1 deletions
|
@ -235,7 +235,7 @@ module GP_SHREG(input nRST, input CLK, input IN, output OUTA, output OUTB);
|
||||||
|
|
||||||
reg[15:0] shreg = 0;
|
reg[15:0] shreg = 0;
|
||||||
|
|
||||||
always @(posedge clk, negedge RSTN) begin
|
always @(posedge clk, negedge nRST) begin
|
||||||
|
|
||||||
if(!nRST)
|
if(!nRST)
|
||||||
shreg = 0;
|
shreg = 0;
|
||||||
|
@ -263,6 +263,12 @@ module GP_VDD(output OUT);
|
||||||
assign OUT = 1;
|
assign OUT = 1;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
module GP_VREF(input VIN, output reg VOUT);
|
||||||
|
parameter VIN_DIV = 1;
|
||||||
|
parameter VREF = 0;
|
||||||
|
//cannot simulate mixed signal IP
|
||||||
|
endmodule
|
||||||
|
|
||||||
module GP_VSS(output OUT);
|
module GP_VSS(output OUT);
|
||||||
assign OUT = 0;
|
assign OUT = 0;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue