Overtone NSL Support

NSLサポートページ



INVゲート


機能

1入力 単機能 インバータゲート機能

信号機能

A_i = 入力信号A
Q_o = 出力

記述特徴

NSL記述例

/* ************************************************************ */
declare INV {

    input       A_i ;

    output      Q_o ;

}

/* ************************************************************ */
// Declare module
module INV {

/* ************************************************************ */
// Internal operation signals

/* ************************************************************ */
// Equation

    {
        Q_o = ~A_i ;

    //  Q_o = ~( A_i ) ;

    }
}
/* ************************************************************ */

Verilog変換例

/*
 Produced by NSL Core, IP ARCH, Inc. Fri Jun 04 17:54:41 2010

 Licensed to :EVALUATION USER:
*/

module INV ( p_reset , m_clock , A_i , Q_o );
  input p_reset, m_clock;
  input A_i;
  output Q_o;

   assign  Q_o = ~A_i;
endmodule
/*
 Produced by NSL Core, IP ARCH, Inc. Fri Jun 04 17:54:41 2010

 Licensed to
*/
PAGE TOP