mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
b1238af49d
this will probably upset people
13 lines
184 B
C
13 lines
184 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int x,y;
|
|
|
|
// for(x=-32;x<32;x++) printf("$%02x,",(x*x)>>4);
|
|
|
|
for(x=-32;x<32;x++) printf("$%02x,",(x*x*16/9)>>4);
|
|
|
|
return 0;
|
|
}
|