modes.ppi 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1993,97 by the Free Pascal development team.
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. const VESANumber=10;
  12. VESAModes : Array[0..VESANumber] of word=
  13. ($100, { 640x400x256 }
  14. $101, { 640x480x256 }
  15. $110, { 640x480x32K }
  16. $111, { 640x480x64k }
  17. $103, { 800x600x256 }
  18. $113, { 800x600x32k }
  19. $114, { 800x600x64k }
  20. $105, { 1024x768x256 }
  21. $116, { 1024x768x32k }
  22. $107, { 1280x1024x256 }
  23. $117); { 1024x768x64k }
  24. {
  25. $Log$
  26. Revision 1.1 1998-03-25 11:18:42 root
  27. Initial revision
  28. Revision 1.5 1998/01/26 11:58:22 michael
  29. + Added log at the end
  30. Working file: rtl/dos/ppi/modes.ppi
  31. description:
  32. ----------------------------
  33. revision 1.4
  34. date: 1997/12/04 08:52:35; author: florian; state: Exp; lines: +14 -13
  35. + vesa mode 1280x1024x256 added
  36. ----------------------------
  37. revision 1.3
  38. date: 1997/12/03 15:24:20; author: florian; state: Exp; lines: +2 -2
  39. Graph.SetGraphMode for DOS added
  40. ----------------------------
  41. revision 1.2
  42. date: 1997/12/01 12:21:31; author: michael; state: Exp; lines: +14 -0
  43. + added copyright reference in header.
  44. ----------------------------
  45. revision 1.1
  46. date: 1997/11/27 08:33:51; author: michael; state: Exp;
  47. Initial revision
  48. ----------------------------
  49. revision 1.1.1.1
  50. date: 1997/11/27 08:33:51; author: michael; state: Exp; lines: +0 -0
  51. FPC RTL CVS start
  52. =============================================================================
  53. }