OpenCores
URL https://opencores.org/ocsvn/mblite/mblite/trunk

Subversion Repositories mblite

[/] [mblite/] [trunk/] [sw/] [util/] [bin2mem.c] - Rev 5

Compare with Previous | Blame | View Log

/****************************************************************************************** 
*   syntax: bin2mem  < filename1.bin  > filename2.mem
*   author: Rene van Leuken
*   modified: Tamar Kranenburg
*   February, 2008: header string provided, so ModelSim can recognize the file's format
*                   (= Veriloh hex) when 'Importing' into memory ... (Huib)
*   September, 2008: prevent reversing byte order
*
*******************************************************************************************/
 
#include <stdio.h>
 
main()
{
    unsigned char c1, c2, c3, c4;
 
    printf("// memory data file (do not edit the following line - required for mem load use)\n");
    printf("// format=hex addressradix=h dataradix=h version=1.0 wordsperline=1\n");
    printf("@00000000\n");
    while (!feof(stdin)) {
        c1 = getchar() & 0x0ff;
        c2 = getchar() & 0x0ff;
        c3 = getchar() & 0x0ff;
        c4 = getchar() & 0x0ff;
        printf ("%.2x%.2x%.2x%.2x\n", c1, c2, c3, c4);
    }
    putchar('\n');
    return 0;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.