mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-16 08:05:31 +00:00
e0febd1a90
keep making git mistakes urgh
13 lines
136 B
C
13 lines
136 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int yy;
|
|
|
|
for(yy=10;yy<58;yy++) {
|
|
printf("$%02X,",0x3d5/yy);
|
|
}
|
|
|
|
return 0;
|
|
}
|