-- --------------------------------------------------------------- -- File name : dcapacitor.vhd -- --------------------------------------------------------------- -- Copyright (C) 1996 Free Model Foundry; http://www.FreeModelFoundry.com -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License version 2 as -- published by the Free Software Foundation. -- MODIFICATION HISTORY : -- -- version no: | author: | mod. date: | changes made: -- V0.1 rev3 02/16/96 Initial coding -- --------------------------------------------------------------- -- PART DESCRIPTION : -- -- Library: DISCRETE -- Technology: N/A -- Part: DCAPACITOR -- -- Description: Digital view of a capacitor ( an open circuit ) -- ------------------------------------------------------------------ LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; ------------------------------------------------------------------ -- ENTITY DECLARATION ------------------------------------------------------------------ ENTITY dcapacitor IS PORT ( A : OUT STD_LOGIC := 'Z'; B : OUT STD_LOGIC := 'Z' ); END dcapacitor; ------------------------------------------------------------------ -- ARCHITECTURE DECLARATION ------------------------------------------------------------------ ARCHITECTURE vhdl_behavioral OF dcapacitor IS BEGIN END vhdl_behavioral;