Bug
This commit is contained in:
parent
88f2c9309f
commit
43028e7e0e
|
@ -12,19 +12,36 @@ architecture structural of b1_y is
|
||||||
Component buf_x4
|
Component buf_x4
|
||||||
port (
|
port (
|
||||||
i : in bit;
|
i : in bit;
|
||||||
|
q : out bit;
|
||||||
|
vdd : in bit;
|
||||||
|
vss : in bit
|
||||||
|
);
|
||||||
|
end component;
|
||||||
|
|
||||||
|
Component inv_x1
|
||||||
|
port (
|
||||||
|
i : in bit;
|
||||||
nq : out bit;
|
nq : out bit;
|
||||||
vdd : in bit;
|
vdd : in bit;
|
||||||
vss : in bit
|
vss : in bit
|
||||||
);
|
);
|
||||||
end component;
|
end component;
|
||||||
|
|
||||||
|
signal n1 : bit;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
|
||||||
|
u1 : inv_x1
|
||||||
|
port map (
|
||||||
|
i => n1,
|
||||||
|
nq => t,
|
||||||
|
vdd => vdd,
|
||||||
|
vss => vss
|
||||||
|
);
|
||||||
u4 : buf_x4
|
u4 : buf_x4
|
||||||
port map (
|
port map (
|
||||||
i => i,
|
i => i,
|
||||||
nq => t,
|
q => n1,
|
||||||
vdd => vdd,
|
vdd => vdd,
|
||||||
vss => vss
|
vss => vss
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue