💾 Archived View for blitter.com › OLGA › MUSIC › RESOURCES › DOS_TAB_UTILS › TABPLAY › SOURCES › ASC… captured on 2024-08-18 at 19:38:35.

View Raw

More Information

⬅️ Previous capture (2022-06-12)

-=-=-=-=-=-=-

#include <stdio.h>

main(){
   int i,x=0;

   for (i=0;i<255;i++){
       if (i==7)
          printf("�%3d=G",i);
       else
       if (i==8)
          printf("�%3d=H",i);
       else
       if (i==9)
          printf("�%3d=I",i);
       else
       if (i==10)
          printf("�%3d=J",i);
       else
       if (i==13)
          printf("�%3d=L",i);
       else
       if (i==26)
          printf("�%3d=Z",i);
       else
       if (i==27)
          printf("�%3d=.",i);
       else
          printf("�%3d=%c",i,i);
       if(x>10){
           printf("�\n");
           x=0;
       }
       else
           x++;
   }
   printf("�                                               <LO95>�");
}