You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(* whitebox *)
module FF(C, D, Q, CE, SR);
parameter RESET_VALUE = 1'b0;
(* CLOCK *)
input C;
(* SETUP = "C 10e-12" *)
input D;
(* SETUP = "C 10e-12" *)
input CE;
(* SETUP = "C 10e-12" *)
input SR;
(* CLK_TO_Q = "C 10e-12" *)
output reg Q;
always @(posedge C) begin
if(SR) begin
Q <= RESET_VALUE;
end else if(CE) begin
Q <= D;
end
end
endmodule
This generates no clock annotations in the .model.xml for D/CE/SR. None of the current examples in the v2x documentation show how to make this work properly.
The text was updated successfully, but these errors were encountered:
This generates no clock annotations in the
.model.xml
for D/CE/SR. None of the current examples in the v2x documentation show how to make this work properly.The text was updated successfully, but these errors were encountered: