/*****************************************************
   Device name     : MB7131E/H/L
   		     MB7132E/H/Y/L
		     MB7131E-SK/H-SK/L-SK
		     MB7132E-SK/H-SK/Y-SK/L-SK
   Fuse enable pin : CE1_
   Vccp            =  7.0 V
   Data out volt   = 20.0 V
   Enable volt     = 20.0 V
   Delay time      = 11   Us
   Date		   : 11. 28. 1990
   Last Modify date:  2. 26. 1991
   Author	   : E. Y. Lee
*****************************************************/
declaration
  dataunit : byte;
  functions
    Program
    Read
    Verify
    Blank_check
    Data_compare
    Auto
  ;
  Manufacturers
    FUJITSU
  ;
  Devices
    D7131
    D7132
  ;
  chips = A7, A6, A5, A4, A3, A2, A1, A0, Q0, Q1, Q2, GND,
	  Q3, Q4, Q5, Q6, Q7, CE2, CE3, CE1_, CE4_, A9, A8, Vcc:Vccp
  ;
  $v1 = Vccp;
  $v2 = Q, CE1_;
  $v3 = Vcc;
endd
/* ----------------------------------------------------------------------  */
int  init( vol1, vol2, vol3 )
voltage vol1, vol2, vol3;
{
  @Vout  1, vol1;
  @Vout  2, vol2;
  @Vout  3, vol3;
  @Out  GND,  @G;
  @Delay 10,  @Ms;

  @Out  Q[0..7], @Z;
  @Out  A[0..9], @W;
  @Out  CE1_,    @W;
  @Out  CE4_,    @W;
  @Out  CE2,     @W;
  @Out  CE3,     @W;
  @Out  Vcc,	 @W;
  
  @Out  A[0..9], @L;
  @Out  CE1_,    @L;
  @Out  CE4_,	 @L;
  @Out  CE[2..3],@H;
  @Out  Vcc,	 @L;  
  @Out  Vcc,     @O;
  @Delay 100,	 @Us;
}
/* ---------------------------------------------------------------------- */
int  Failf ( hwhb, hwlb, lwhb, lwlb, data )
int  hwhb, hwlb, lwhb, lwlb, data;
{
  int  high, low;

  high = ( hwhb << 8) | hwlb;
  low  = ( lwhb << 8) | lwlb;
  @Fail  high, low, data;
}
/* ---------------------------------------------------------------------- */
int  read(option)
int  option;
{
  int  i, j;
  int  tmp, tmp2;
  int  saddr, eaddr;

  @Set  B_HADDR, B_LADDR;
  init(5.0, 5.0, 5.0);
  tmp = tmp2 = 0;
  for(i=S_LWHB;i<=E_LWHB;i++)
  {
    @Display  68,  9, i;
    @Out    A[8..9], i;
    if( i == S_LWHB )  saddr = S_LWLB;
    else		saddr = 0;
    if( i == E_LWHB )  eaddr = E_LWLB;
    else		eaddr = 0xff;    
    for(j=saddr; j<=eaddr;j++)
    {
       @Out  A[0..7], j;
       @Out  CE1_, @L;
       @Out  CE4_, @L;
       @Out  CE2,  @H;
       @Out  CE3,  @H;

       @In   Q[0..7], tmp;
       if( option == 1 )      @Load tmp;
       else if(option == 4 )  {
           @Store  tmp2;
           @Compare tmp, tmp2;
       }           
       else if(option == 3 )
       {
	   if( tmp != 0)      Failf(0, 0, i, j, tmp );
       }
       else if(option == 2 )
       {
	   @Store  tmp2;
	   if( tmp != tmp2 )     Failf( 0, 0, i, j, tmp );
       }
       @Inc  SPLIT;
    }
  }
}
/* ---------------------------------------------------------------------- */
int  program()
{
  int   failcnt, i, j, k, m;
  int   tmp, tmp2, tmp3;
  int   saddr, eaddr;

  failcnt = 0;
  tmp = tmp2 = tmp3 = 0;
  @Set  B_HADDR, B_LADDR;
  init( 7.0, 21.0, 5.0 );
  for(i=S_LWHB;i<=E_LWHB;i++)
  {
       @Display  68,  9, i;
       @Out     A[8..9], i;
       if( i == S_LWHB )  saddr = S_LWLB;
       else		saddr = 0;
       if( i == E_LWHB )  eaddr = E_LWLB;
       else		eaddr = 0xff;       
       for(j=saddr;j<=eaddr;j++)
       {
	  @Out  A[0..7], j;
	  @Out  CE1_,  @L;
	  @Out  CE4_,  @L;
	  @Out  CE2,   @H;
	  @Out  CE3,   @H;
	  @Store  tmp;
	  
	  for(k=0; k<8;k++)
	  {
	     if( (tmp & (1 << k) ) > 0)
	     {
		@Out  CE1_,      @L;
		@Out  CE4_,      @L;
		@In   Q[0..7], tmp3;
		if( (tmp3 & (1 << k) ) == 0)
		{
		  for(m=0;m<1;m++)
		  {
		     @Out   Q[0..7], @W;                 
		     @Out   Q[0..7], @L;
		     @Out   Vccp,    @O;
		     @Out   Vcc,     @F;
		     @Out    CE1_,   @O;
		     @Delay     4,   @Us;
		     @Out   Q[k],    @O;
		     @Delay  10, @Us;
		     @Out   Q[k],    @F;
		     @Delay     2,  @Us;
		     @Out    CE1_,  @F;
		     @Out    CE1_,  @L;
		     @Out    Vcc,   @O;
		     @Out    Vccp,  @F;
		     @Delay    10,  @Us;

		     @Out  Q[0..7], @Z;
		     @In   Q[0..7], tmp2;
		     tmp2 = tmp2 & (1 << k) ;
		     if( tmp2 == 0 )
		     {
			m -= 1;
			failcnt++;
			if( failcnt >= LOP )     Failf ( 0, 0, i, j, tmp2 );
		     }
		     else     failcnt = 0;
		     @Delay  2, @Us;
		  } /* for m */
	       }  /*  if  */
	     }  /*  if  */
	  } /* for k */
	  @Inc  SPLIT;
       }  /* for j */
    }  /* for i */
}  
/* --------------------------------------------------------------------- */ 
int  main()
{
  if( FUNCTION == Read)	     {
  	@Display 26, 6, "Reading...";
  	read(1);
  	@Display 26, 6, "Read OK!  ";
  	@CheckSumOn;
  }
  else if( FUNCTION == Program)	 {
  	@Display 26, 6, "Programming...";
  	program();
  	@Display 26, 6, "Program OK!   ";
  	@Display 26, 7, "Verifying...";
  	read(2);
  	@Display 26, 7, "Verification OK!";
  }  	
  else if( FUNCTION == Verify)	 {
  	@Display 26, 6, "Verifying...";
  	read(2);
  	@Display 26, 6, "Verification OK!";
  }
  else if( FUNCTION == Blank_check)  {
  	@Display 26, 6, "Blank checking...";
  	read(3);
  	@Display 26, 6, "Blank check OK!  ";
  }
  else if( FUNCTION == Data_compare)  {
  	@Display 26, 6, "Data comparing...";
  	read(4);
  	@Display 26, 6, "Data comparison OK!";
  }
  else if( FUNCTION == Auto)     {
	@Display 26, 6, "Blank checking...";  
  	read(3);
  	@Display 26, 6, "Blank check OK!  ";
  	@Display 26, 7, "Programming...";
  	program();
  	@Display 26, 7, "Program OK!   ";
  	@Display 26, 8, "Verifying...";
  	read(2);
  	@Display 26, 8, "Verification OK!";
  }
}