This commit is contained in:
Frater 2017-09-24 01:45:36 +02:00
commit 43352ff262
1291 changed files with 220976 additions and 0 deletions

18
GRID/MAIN.CUT Normal file
View file

@ -0,0 +1,18 @@
if(y==0)
{
if(x&1) c=63;
else if(x&4) c=31;
else if(x&2) c=15;
}
else if(y==1)
{
if(x&2) c=63;
else if(x&1) c=31;
else if(x&4) c=15;
}
else
{
if(x&4) c=63;
else if(x&2) c=31;
else if(x&1) c=15;
}