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

Subversion Repositories openfire2

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 5 to Rev 6
    Reverse comparison

Rev 5 → Rev 6

/trunk/sw/lib/inbyte.c File deleted
/trunk/sw/lib/Makefile File deleted
/trunk/sw/crt/Makefile File deleted
/trunk/sw/monc/monc.c File deleted
/trunk/sw/vga/Makefile File deleted
/trunk/sw/vga/vga.c File deleted
/trunk/sw/vga/vga.h File deleted
/trunk/utils/pc.pl File deleted \ No newline at end of file
/trunk/utils/bin2bram.exe Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
trunk/utils/bin2bram.exe Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/utils/bin2bram.c =================================================================== --- trunk/utils/bin2bram.c (revision 5) +++ trunk/utils/bin2bram.c (nonexistent) @@ -1,93 +0,0 @@ -// bin2bram : program to fill the template "bootram" with the provided -// binary code - -#include -#include -#include - -#define MAX_RAM 2048 -#define MAX_LINE 128 -#define DUMP_TOKEN "$DUMP_INIT_RAM" -#define DUMP_LINE "defparam MEM%u.INIT_%02X = 256'h%s;\n" /* memory content */ -#define DUMP_INITIAL_1 "defparam MEM%u.INIT_%c = 9'h0%02X;\n" /* dword 0 at startupt */ -#define DUMP_INITIAL_2 "defparam MEM%u.SRVAL_%c = 9'h0%02X;\n" /* dword 0 at reset */ - -int main(int argn, char **argc) -{ - char line[MAX_LINE], hexcodes[MAX_LINE], tmp[MAX_LINE]; - char memory[MAX_RAM][4]; // code loaded from BIN file - int count, offset = 0; - FILE *f, *ftemplate; - - if(argn != 4) - { - printf("usage: %s