|

楼主 |
发表于 2018-7-20 19:30:12
|
显示全部楼层
------------------------------------------------------------
-- VHDL SHEET1
-- 2018 7 20 19 9 5
-- Created By "Protel Advanced Schematic"
-- "Copyright (c) 1998 Protel International Pty Ltd"
------------------------------------------------------------
------------------------------------------------------------
Library ieee;
Use ieee.std_logic_1164.all;
Entity SHEET1 Is Port
(
);
End SHEET1;
------------------------------------------------------------
------------------------------------------------------------
Architecture Structure Of SHEET1 Is
Component CAP
Port
(
n1:InOut std_logic;
n2:InOut std_logic
);
End Component;
Component RES
Port
(
n1:InOut std_logic;
n2:InOut std_logic
);
End Component;
Component VS_A
Port
(
n1:InOut std_logic;
n2:InOut std_logic
);
End Component;
Signal NetV1_1: std_logic;
Signal GND : std_logic;
Signal NetC1_2: std_logic;
Begin
C1 : 10p
Port Map
(
n1 => NetV1_1,
n2 => NetC1_2
);
R1 : 1k
Port Map
(
n1 => GND,
n2 => NetC1_2
);
V1 : 1v
Port Map
(
n1 => NetV1_1,
n2 => GND
);
End Structure;
------------------------------------------------------------
|
|