URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [mp3/] [sw/] [utils/] [bin2c.c] - Rev 281
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> int main(void) { int c, i = 0; printf("#ifdef HAVE_CONFIG_H\n"); printf("# include \"config.h\"\n"); printf("#endif\n\n"); printf("#ifdef EMBED\n"); printf("unsigned char flash_data[] = {\n"); while((c = getchar()) != EOF) { printf("0x%.2x, ", c); if(!(i % 32)) printf("\n"); i++; } printf(" };\n"); printf("#endif\n"); }
Go to most recent revision | Compare with Previous | Blame | View Log