mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
b1238af49d
this will probably upset people
22 lines
292 B
C
22 lines
292 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int i;
|
|
int top;
|
|
int bottom;
|
|
int out;
|
|
|
|
for(i=0;i<256;i++) {
|
|
top=i&0x7c;
|
|
bottom=i&3;
|
|
out=(top>>2)|(bottom<<5);
|
|
if (i%8==0) printf("\n.byte\t");
|
|
printf("$%02X",out);
|
|
if (i%8!=7) printf(",");
|
|
}
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|