home *** CD-ROM | disk | FTP | other *** search
/ Die ASC Mega 2 / ASC-Mega2-CD-ROM.iso / SPIELE / KAISER / KGRAPH.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1990-08-18  |  2.0 KB  |  34 lines

  1. procedure hgc_graphmode;                              external;
  2. procedure hgc_textmode;                               external;
  3. procedure hgc_horline (von_x,bis_x,y: word);          external;
  4. procedure hgc_verline (x,von_y,bis_y: word);          external;
  5. procedure hgc_mal (x: byte; y: word; zeichen: byte);  external;
  6. procedure hgc_char (x: byte; y: word; zeichen: byte); external;
  7. procedure hgc_text (x: byte; y: word; text: string);  external;
  8. procedure hgc_row (y: byte);                          external;
  9. procedure hgc_kugel (x,y: word);                      external;
  10.  
  11. procedure cga_graphmode;                              external;
  12. procedure cga_textmode;                               external;
  13. procedure cga_horline (von_x,bis_x,y: word);          external;
  14. procedure cga_verline (x,von_y,bis_y: word);          external;
  15. procedure cga_mal (x: byte; y: word; zeichen: byte);  external;
  16. procedure cga_char (x: byte; y: word; zeichen: byte); external;
  17. procedure cga_text (x: byte; y: word; text: string);  external;
  18. procedure cga_row (y: byte);                          external;
  19. procedure cga_kugel (x,y: word);                      external;
  20. procedure cga_save (buffer: pointer);                 external;
  21. procedure cga_restore (buffer: pointer);              external;
  22.  
  23. procedure ega_graphmode;                              external;
  24. procedure ega_textmode;                               external;
  25. procedure ega_palette;                                external;
  26. procedure ega_horline (von_x,bis_x,y: word);          external;
  27. procedure ega_verline (x,von_y,bis_y: word);          external;
  28. procedure ega_mal (x: byte; y: word; zeichen: byte);  external;
  29. procedure ega_char (x: byte; y: word; zeichen: byte); external;
  30. procedure ega_text (x: byte; y: word; text: string);  external;
  31. procedure ega_row (y: byte);                          external;
  32. procedure ega_kugel (x,y: word);                      external;
  33. procedure ega_scroll (von_y,bis_y,bytes: word);       external;
  34.