From 7a6b27bc3b90875f14976fb848b6fa3e556c9276 Mon Sep 17 00:00:00 2001 From: The Syf Tool Date: Tue, 31 Oct 2000 11:31:21 +0000 Subject: [PATCH] Avec encore plus de morceaux de fruits !! --- alliance/share/cells/dp_sxlib/dp_dff_scan_x4.vbe | 4 ++-- alliance/share/cells/dp_sxlib/dp_dff_x4.vbe | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/alliance/share/cells/dp_sxlib/dp_dff_scan_x4.vbe b/alliance/share/cells/dp_sxlib/dp_dff_scan_x4.vbe index 2ae4ffcf..3b5ea227 100644 --- a/alliance/share/cells/dp_sxlib/dp_dff_scan_x4.vbe +++ b/alliance/share/cells/dp_sxlib/dp_dff_scan_x4.vbe @@ -8,7 +8,7 @@ PORT ( nscanx : in BIT; i : in BIT; scin : in BIT; - q : inout BIT; + q : out BIT; vdd : in BIT; vss : in BIT ); @@ -36,7 +36,7 @@ BEGIN label0 : BLOCK ((ckx and not (ckx'STABLE)) = '1') BEGIN - ff <= GUARDED ((scanx and scin) or (nscanx and ((wenx and i) or (nwenx and q)))); + ff <= GUARDED ((scanx and scin) or (nscanx and ((wenx and i) or (nwenx and ff)))); END BLOCK label0; q <= ff; diff --git a/alliance/share/cells/dp_sxlib/dp_dff_x4.vbe b/alliance/share/cells/dp_sxlib/dp_dff_x4.vbe index 1f50f7ed..8a10f8e4 100644 --- a/alliance/share/cells/dp_sxlib/dp_dff_x4.vbe +++ b/alliance/share/cells/dp_sxlib/dp_dff_x4.vbe @@ -5,7 +5,7 @@ PORT ( wenx : in BIT; nwenx : in BIT; i : in BIT; - q : inout BIT; + q : out BIT; vdd : in BIT; vss : in BIT ); @@ -29,7 +29,7 @@ BEGIN label0 : BLOCK ((ckx and not (ckx'STABLE)) = '1') BEGIN - ff <= GUARDED ((wenx and i) or (nwenx and q)); + ff <= GUARDED ((wenx and i) or (nwenx and ff)); END BLOCK label0; q <= ff;