mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-16 23:20:43 +00:00
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;
|
||
|
}
|