dos33fsprogs/demos/hellmood_memories/table_gen.c
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

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;
}