greenpak4: added model for GP_EDGEDET block

This commit is contained in:
Andrew Zonenberg 2016-10-18 19:33:26 -07:00
parent 2effa497a3
commit a818472f0c
1 changed files with 10 additions and 0 deletions

View File

@ -241,6 +241,16 @@ module GP_DFFSRI(input D, CLK, nSR, output reg nQ);
end
endmodule
module GP_EDGEDET(input IN, output reg OUT);
parameter EDGE_DIRECTION = "RISING";
parameter DELAY_STEPS = 1;
parameter GLITCH_FILTER = 0;
//not implemented for simulation
endmodule
module GP_IBUF(input IN, output OUT);
assign OUT = IN;
endmodule