Avec encore plus de morceaux de fruits !!
This commit is contained in:
parent
2b6b727355
commit
7a6b27bc3b
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue