home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
education
/
a
/
autopcb
/
!AutoPCB
/
c
/
UTIL
< prev
next >
Wrap
Text File
|
1991-03-17
|
338b
|
24 lines
#include "bbc.h"
static int current_colour = 7;
void Dot( int colour, int pixrow, int pixcol )
{
if (colour != current_colour)
{
bbc_gcol(0, colour);
current_colour = colour;
}
bbc_plot(bbc_Point | bbc_DrawAbsFore, pixcol, pixrow);
}
int GetMode( void )
{
return 0;
}
void SetMode( int newmode )
{
bbc_mode(12);
}