Avec encore plus de morceaux de fruits !!

This commit is contained in:
The Syf Tool 2000-10-31 11:31:21 +00:00
parent 2b6b727355
commit 7a6b27bc3b
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;