AldeBasiClib/AldeBasiClib.c

17 lines
253 B
C
Raw Permalink Normal View History

2016-05-08 11:11:52 +02:00
#include "MonochromeLib.h"
2016-04-29 21:20:21 +02:00
#include "AldeBasiClib.h"
void PlotChg(int x, int y)
{
2016-05-08 11:11:52 +02:00
if(PlotTest(x,y) == ML_BLACK)PlotOff(x,y);
2016-04-29 21:20:21 +02:00
else PlotOn(x,y);
}
void PxlChg(int x, int y)
{
if(PxlTest(x,y) == ML_BLACK)PxlOff(x,y);
else PxlOn(x,y);
}