3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Merge branch 'mchp' of https://github.com/tony-min-1/yosys into change_filenames

This commit is contained in:
C77874 2024-07-04 09:00:38 -07:00
commit 59e45be275

View file

@ -166,15 +166,20 @@ module MICROCHIP_SYNC_SET_DFF(
input En,
output Q);
parameter [0:0] INIT = 1'b0; // unused
reg q_ff;
always @(posedge CLK) begin
if (En == 1) begin
if (Set == 0)
Q <= 1;
q_ff <= 1;
else
Q <= D;
q_ff <= D;
end
end
assign Q = q_ff;
specify
$setup(D , posedge CLK &&& En && Set, 0); // neg setup not supported?
$setup(En, posedge CLK, 109);
@ -192,15 +197,20 @@ module MICROCHIP_SYNC_RESET_DFF(
input En,
output Q);
parameter [0:0] INIT = 1'b0; // unused
always @(posedge C) begin
reg q_ff;
always @(posedge CLK) begin
if (En == 1) begin
if (Reset == 0)
Q <= 0;
q_ff <= 0;
else
Q <= D;
q_ff <= D;
end
end
assign Q = q_ff;
specify
$setup(D , posedge CLK &&& En && Reset, 0); // neg setup not supported?
$setup(En, posedge CLK, 109);