home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / s / show_bmp.zip / BMPTEST.PAS next >
Pascal/Delphi Source File  |  1993-03-23  |  209b  |  12 lines

  1. Uses show_bmp,crt;
  2.  
  3. Begin
  4. SetVideomode($13);     {Set Video Mode to 320x200x256c}
  5. showbmp('runset.dat'); {Display the bitmap}
  6.  
  7. repeat
  8. until keypressed;
  9.  
  10. textmode(co80);        {Setup Textmode}
  11. end.
  12.