TBMXI2X1RE.v 969 Bytes
// VERSION:4.00 DATE:2001/05/14 OPENCAD Verilog LIBRARY
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
    `suppress_faults
    `enable_portfaults
`endif

module TBMXI2X1RE ( N01 , H01 , H02 , H03 ) ;
 input H01 ;
 input H02 ;
 input H03 ;
 output N01 ;

  buf  	 ( _H01 , H01 ) ;
  buf  	 ( _H02 , H02 ) ;
  buf  	 ( _H03 , H03 ) ;
  not  	 ( _G001 , _H01 ) ;
  not  	 ( _G002 , _H02 ) ;
  not  	 ( _G003 , _H03 ) ;
  and  	 ( _G010 , _G001 , _G002 ) ;
  and  	 ( _G011 , _G001 , _G003 ) ;
  and  	 ( _G012 , _H03 , _G002 ) ;
  or  	 ( N01 , _G010 , _G011 , _G012 ) ;

 specify
        specparam DMY_SPC=1;

  ( H01 *>  N01 ) = ( DMY_SPC,
                      DMY_SPC );
  ( H02 *>  N01 ) = ( DMY_SPC,
                      DMY_SPC );
    if ( H03 )
      ( H03 *> N01 ) = ( DMY_SPC, DMY_SPC );
    if ( !H03 )
      ( H03 *> N01 ) = ( DMY_SPC, DMY_SPC );
 endspecify
endmodule
`ifdef verifault
    `nosuppress_faults
    `disable_portfaults
`endif
`endcelldefine