>>> SPICE
*============================================================================
Vpls  Pls  0  PULSE  ( 0.0  1.0  1.0ns  1.0ns  1.0ns  4.0ns  10.0ns )
*
R1  Pls     VHDL_p  R= 100
X1  VHDL_p  0       IBIS_V_VHDL(Simple_test)
*
*============================================================================
>>> VHDL
--===========================================================================
library IEEE, MacroLib;
use IEEE.ELECTRICAL_SYSTEMS.all;

entity IBIS_V_VHDL is
    port (terminal  Node_p,  Node_n  : electrical);
end entity IBIS_V_VHDL;

architecture Simple_test of IBIS_V_VHDL is

begin

   IBIS_V1 : entity MacroLib.IBIS_V(IDEAL)
      generic map ( Vdc   =>  1.5,
                    Scale =>  2.0 )
      port map ( P => Node_p,
                 N => Node_n );

end architecture Simple_test;
--===========================================================================
