cellules de transparences avec et sans boody tie

This commit is contained in:
Franck Wajsburt 1999-09-15 16:50:38 +00:00
parent 4b8459b4a4
commit b6a59f9dcb
3 changed files with 32 additions and 0 deletions

View File

@ -51,3 +51,7 @@ xr2_x4 C
zero_x0 C
one_x0.ap F
zero_x0.ap F
rowend_x0 C
tie_x0 C
rowend_x0 F
tie_x0 F

View File

@ -0,0 +1,14 @@
ENTITY rowend_x0 IS
PORT (
vdd : in BIT;
vss : in BIT
);
END rowend_x0;
ARCHITECTURE behaviour_data_flow OF rowend_x0 IS
BEGIN
ASSERT ((vdd and not (vss)) = '1')
REPORT "power supply is missing on rowend_x0"
SEVERITY WARNING;
END;

View File

@ -0,0 +1,14 @@
ENTITY tie_x0 IS
PORT (
vdd : in BIT;
vss : in BIT
);
END tie_x0;
ARCHITECTURE behaviour_data_flow OF tie_x0 IS
BEGIN
ASSERT ((vdd and not (vss)) = '1')
REPORT "power supply is missing on tie_x0"
SEVERITY WARNING;
END;