/* ************************************************************ */
declare NOR2 {
input A_i ;
input B_i ;
output Q_o ;
}
/* ************************************************************ */
// Declare module
module NOR2 {
/* ************************************************************ */
// Internal operation signals
/* ************************************************************ */
// Equation
{
Q_o = ~( A_i | B_i ) ;
}
}
/* ************************************************************ */