home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / education / a / autopcb / !AutoPCB / c / UTIL < prev    next >
Text File  |  1991-03-17  |  338b  |  24 lines

  1. #include "bbc.h"
  2.  
  3. static int current_colour = 7;
  4.  
  5. void Dot( int colour, int pixrow, int pixcol )
  6. {
  7.   if (colour != current_colour)
  8.   {
  9.     bbc_gcol(0, colour);
  10.     current_colour = colour;
  11.   }
  12.   bbc_plot(bbc_Point | bbc_DrawAbsFore, pixcol, pixrow);
  13. }
  14.  
  15. int GetMode( void )
  16. {
  17.   return 0;
  18. }
  19.  
  20. void SetMode( int newmode )
  21. {
  22.   bbc_mode(12);
  23. }
  24.