home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 253.img / DOS50HCT.ZIP / DOS50HCT.TD0 / DOSHCT / COMPAT1.BAS < prev    next >
BASIC Source File  |  1990-05-25  |  1KB  |  46 lines

  1. '---------------------------------------------------------------------------
  2. ' Test:         COMPAT1.BAS
  3. '
  4. '               Copyright (C) 1990, Microsoft Corporation
  5. '
  6. ' General:      Compatibility Testing
  7. '
  8. ' Specific:     SCREEN, WIDTH, CIRCLE, CHAIN
  9. '
  10. ' Secondary:    File I/O
  11. '
  12. ' Products:     QB4, QB4.5, BC6, QBASIC
  13. '
  14. '---------------------------------------------------------------------------
  15. ' Purpose:      Check the Video Display Adaptor
  16. '
  17. ' Scenarios:    1. Check the expected screen mode/width combinations for
  18. '                  an MDPA, CGA, EGA, VGA, MCGA, HERCULES, or OLIVETTI
  19. '                  video adaptors.
  20. '---------------------------------------------------------------------------
  21. ' Dependencies: User or command line switch.
  22. '
  23. ' Method:       QBASIC COMPAT
  24. '
  25. '---------------------------------------------------------------------------
  26. ' Revision History:
  27. '
  28. '       [ 0]    01-Sep-1988         Created by jimfu
  29. '       [ 1]    25-May-1990         Added Chain to Compat testing
  30. '---------------------------------------------------------------------------
  31.  
  32.  
  33. PRINT #1, "CHAIN PASSED"
  34. CLOSE #1
  35.  
  36. PRINT
  37. PRINT "Please verify that these drives are indeed connected."
  38. PRINT
  39. PRINT "The CHAIN test behaved as expected"
  40. BEEP
  41. PRINT
  42. PRINT "        PRESS ANY KEY TO CONCLUDE TEST"
  43. IF Manual THEN SLEEP
  44. SYSTEM
  45.  
  46.