home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_09 / 8n09113a < prev    next >
Text File  |  1990-06-20  |  873b  |  44 lines

  1.  
  2. ******
  3. Listing 2
  4.  
  5. #define true   1
  6. #define false  0
  7. main()
  8. {
  9. int initialization = true;
  10. if (initialization == true)
  11.      {
  12.  
  13.      /*Start the memory tests. */
  14.  
  15.      printf("Call RANDOM ACCESS MEMORY test function x.1.1.1.\n");
  16.      x1_1_1();
  17.  
  18.      printf("Call MASS MEMORY test function X.1.1.2.\n");
  19.      x1_1_2();
  20.  
  21.      printf("Call FPROM PROGRAM MEMORY test function X.1.1.3.\n");
  22.      x1_1_3();
  23.      /* End the memory tests. */
  24.  
  25.      printf("Call I/O SETUP function X.1.2\n");
  26.      x1_2();
  27.  
  28.      printf("Call SET HARDWARE PARAMETERS function X.1.4.1.\n");
  29.      x1_4_();
  30.  
  31.      printf("Call SET SOFTWARE PARAMETERS function X.1.4.2.\n");
  32.      x1_4_2();
  33.  
  34.      printf("The END of ALL INITIALIZATION functions.\n");
  35.  
  36.      printf("Enable the Programmable Interrupt Controller.\n");
  37.  
  38.      initialization = false;
  39.  
  40.      }
  41. }
  42. ********
  43.  
  44.