Skip to content

Commit

Permalink
greenpak4: added model for GP_EDGEDET block
Browse files Browse the repository at this point in the history
azonenberg committed Oct 19, 2016
1 parent 2effa49 commit a818472
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions techlibs/greenpak4/cells_sim.v
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a818472

Please sign in to comment.