OpenCores
URL https://opencores.org/ocsvn/an-fpga-implementation-of-low-latency-noc-based-mpsoc/an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk

Subversion Repositories an-fpga-implementation-of-low-latency-noc-based-mpsoc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk/mpsoc/src_c
    from Rev 28 to Rev 34
    Reverse comparison

Rev 28 → Rev 34

/Makefile
1,6 → 1,6
TOOLCHAIN:=${PRONOC_WORK}/toolchain
SUBDIRS = ihex2bin ihex2mif jtag plot
BIN_FILES = ihex2bin/ihex2bin ihex2mif/ihex2mif
SUBDIRS = ihex2bin ihex2mif bin2str jtag plot
BIN_FILES = ihex2bin/ihex2bin ihex2mif/ihex2mif bin2str/bin2str
PRONOC_WORK_BIN := $(TOOLCHAIN)/bin
 
 
/bin2str/Makefile
0,0 → 1,3
#!/bin/sh
all:
gcc -Wall main.c -o bin2str
/bin2str/bin2str Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
bin2str/bin2str Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Index: bin2str/main.c =================================================================== --- bin2str/main.c (nonexistent) +++ bin2str/main.c (revision 34) @@ -0,0 +1,239 @@ +#include +#include +#include +#include + + + + +void bin_str_convert(); +void hex_str_convert(); +char *remove_ext (char* , char , char ); +char *add_ext (char* , char *); + + +int bin_enable = 0; +int hex_enable = 0; +int data_width =32; +char * in_file_name; +char * out_file_name; + +void usage (void) +{ + printf("Usage: ./bin2str \n"); + printf("\nOptions: \n"); + printf(" -d : memory data width in bit. The default value is 32\n"); + printf(" -b : generate output file in Binary string.\n"); + printf(" -h : generate output file in Hex string.\n"); + printf(" -f : input bin file .\n"); + printf(" -o : output ascii text file.\n"); + +} + +void processArgs (int argc, char **argv ) +{ + char c; + + opterr = 0; + + while ((c = getopt (argc, argv, "bhd:f:o:")) != -1) + { + switch (c) + { + case 'd': + data_width = atoi(optarg); + case 'b': + bin_enable = 1; + break; + case 'h': + hex_enable = 1; + break; + case 'f': + in_file_name = optarg; + break; + case 'o': + out_file_name = optarg; + break; + + case '?': + if (isprint (optopt)) + fprintf (stderr, "Unknown option `-%c'.\n", optopt); + else + fprintf (stderr, "Unknown option character `\\x%x'.\n", optopt); + default: + usage(); + exit(1); + } + } +} + + + + +int main (int argc, char **argv ){ + + + processArgs (argc,argv ); + if (in_file_name == NULL) {usage();exit(1);} + if (bin_enable == 0 && hex_enable == 0) {printf("No output file format is selected. One of -b or -h argumet is required.\n\n");usage();exit(1);} + if (data_width == 0 ) {printf("\'0\' is an invalid memory data width.\n\n");usage();exit(1);} + if (out_file_name == NULL) { + out_file_name= remove_ext (in_file_name, '.', '/'); + } + if (bin_enable )bin_str_convert(); + if (hex_enable )hex_str_convert(); + + return 0; +} + +void bin_str_convert(){ + FILE * fin; + FILE * fout; + char * out_name; + char c; + fin = fopen(in_file_name, "rb"); + + int i, b,n=0; + if (fin == NULL) { + printf(" Can't open file '%s' for reading.\n", in_file_name); + //return; + exit(1); + } + out_name= add_ext (out_file_name, "memb"); + fout = fopen(out_name, "wb"); + if (fout == NULL) { + printf(" Can't create file '%s'.\n", out_name); + //return; + exit(1); + } + while (!feof(fin) && !ferror(fin)) { + c=fgetc( fin); + for(i=0;i<8;i++){ + b=(c&0x80)? '1':'0'; + fprintf(fout,"%c",b); + c<<=1; + n++; + if(n==data_width) { + n=0; + fprintf(fout,"\n"); + } + + } + + + } + if(n>0){ + for(i=n;i0){ + for(i=n;i
bin2str/ram0.bin Property changes : Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Index: bin2str/ram0.bstr =================================================================== --- bin2str/ram0.bstr (nonexistent) +++ bin2str/ram0.bstr (revision 34) @@ -0,0 +1,419 @@ +10111000000010000000000001010000 +00000000000000000000000000000000 +10111000000010000000001010111100 +00000000000000000000000000000000 +10111000000010000000001011001100 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +10111000000010000000001011000100 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00110001101000000000011010001000 +00110000010000000000010101111000 +00110000001000000000111010011000 +10111001111101000000000011000000 +10000000000000000000000000000000 +10111001111101000000001001110000 +00110000101000110000000000000000 +10111000000000000000000000000000 +11100000011000000000011010001000 +00110000001000011111111111100100 +11111001111000010000000000000000 +10111100000000110000000000010100 +10111000000000000000000001000000 +11111000011000000000010110000000 +10011001111111000010000000000000 +10000000000000000000000000000000 +11101000011000000000010110000000 +11101000100000110000000000000000 +10111110001001001111111111101100 +00110000011000110000000000000100 +10110000000000000000000000000000 +00110000011000000000000000000000 +10111100000000110000000000010000 +00110000101000000000011010000000 +10011001111111000001100000000000 +10000000000000000000000000000000 +00110000011000000000000000000001 +11110000011000000000011010001000 +11101001111000010000000000000000 +10110110000011110000000000001000 +00110000001000010000000000011100 +10110000000000000000000000000000 +00110000011000000000000000000000 +00110000001000011111111111100100 +11111001111000010000000000000000 +00110000101000000000011010000000 +00110000110000000000011010001100 +10111100000000110000000000001100 +10011001111111000001100000000000 +10000000000000000000000000000000 +11101000011000000000011010000100 +10110000000000000000000000000000 +00110000100000000000000000000000 +10111100000000110000000000010100 +00110000101000000000011010000100 +10111100000001000000000000001100 +10011001111111000010000000000000 +10000000000000000000000000000000 +11101001111000010000000000000000 +10110110000011110000000000001000 +00110000001000010000000000011100 +00100000001000011111111111101100 +11111001111000010000000000000000 +00100000110000000000011010001000 +00100000111000000000011010001000 +00000110010001100011100000000000 +10111100011100100000000000010100 +11111000000001100000000000000000 +00100000110001100000000000000100 +00000110010001100011100000000000 +10111100100100101111111111110100 +00100000110000000000011010001000 +00100000111000000000011010101000 +00000110010001100011100000000000 +10111100011100100000000000010100 +11111000000001100000000000000000 +00100000110001100000000000000100 +00000110010001100011100000000000 +10111100100100101111111111110100 +10111001111101000000000011100100 +10000000000000000000000000000000 +10111001111101000000001110110000 +10000000000000000000000000000000 +00100000110000000000000000000000 +00100000111000000000000000000000 +10111001111101000000000001011100 +00100000101000000000000000000000 +00110010011000110000000000000000 +10111001111101000000001110111000 +10000000000000000000000000000000 +10111001111101000000000001011100 +10000000000000000000000000000000 +11001001111000010000000000000000 +00110000011100110000000000000000 +10110110000011110000000000001000 +00100000001000010000000000010100 +10010000101001010000000001100000 +10110000000000001010010100000000 +11111000101000000000000000000000 +10110110000011110000000000001000 +10000000000000000000000000000000 +10111110000001010000000000010100 +00110000101001011111111111111111 +10000000000000000000000000000000 +10111110001001011111111111111100 +00110000101001011111111111111111 +10110110000011110000000000001000 +10000000000000000000000000000000 +00110000001000011111111111100100 +11111001111000010000000000000000 +10111001111101001111111111001000 +00110000101000000000000001000001 +10111000000000001111111111111000 +10010100011100000000000000010000 +10100100011000110000000000010000 +10111100001000111111111111111000 +10010100011000001000000000000001 +10110000000000000010000000000000 +10100100011000110000000000000000 +10111100001000110000000000011000 +00010000100000000000100000000000 +00110000011000000000010000000000 +10010000011000110000000000000001 +00010000100001000001100000000000 +00010000001000000010000000000000 +10010100011100010000000000010000 +10110110000011110000000000001000 +10000000000000000000000000000000 +10010100011100010000000000010000 +10110110000011110000000000001000 +10000000000000000000000000000000 +10010100011100000000000000010000 +10100100011000110000000000010000 +10111100001000111111111111111000 +10110110000011110000000000001000 +10000000000000000000000000000000 +10010100011100000000000000010000 +10100100011000110000000000010000 +10111100001000111111111111111000 +10010100011000001000000000000001 +10110000000000000010000000000000 +10100100011000110000000000000000 +10111100001000110000000001010000 +00010000100000000000100000000000 +00110000011000000000010000000000 +10010000011000110000000000000001 +00010100110000110010000000000000 +00010000001000000011000000000000 +00010000101001000000000000000000 +00110000111000000000111010101000 +00010110010001110010000000000011 +10111100101100100000000000100000 +00010101000001000000000000000000 +00010000100001100010100000000000 +11101000011001010000000000000000 +00110000101001010000000000000100 +00010110010001110010100000000011 +10111110010100101111111111110000 +11011000011001000100000000000000 +10010100011100010000000000010000 +10000000000000000000000000000000 +10111000000000001111111111111100 +10010100011100010000000000010000 +10110110000011110000000000001000 +10000000000000000000000000000000 +10110110000100010000000000000000 +10000000000000000000000000000000 +10110110100100010000000000000000 +10000000000000000000000000000000 +10110110001011100000000000000000 +10000000000000000000000000000000 +00110000001000011111111111100000 +00010000110000000000000000000000 +11111010011000010000000000011100 +11111001111000010000000000000000 +10111001111101000000000000100100 +00010010011001010000000000000000 +11101000101000000000010101101100 +11101000011001010000000000101000 +10111100000000110000000000001100 +10011001111111000001100000000000 +10000000000000000000000000000000 +10111001111101001111110101101100 +00010000101100110000000000000000 +11101000011000000000010101101100 +00110000001000011111111111001000 +11111011010000010000000000110000 +11111011011000010000000000110100 +11111001111000010000000000000000 +11111010011000010000000000011100 +11111010110000010000000000100000 +11111010111000010000000000100100 +11111011000000010000000000101000 +11111011001000010000000000101100 +11101011000000110000000001001000 +00010011011001010000000000000000 +10111110000110000000000001010000 +00010011010001100000000000000000 +11101000011110000000000000000100 +11101011001110000000000010001000 +00110010011000111111111111111111 +10111100010100110000000000111100 +01100100100100110000010000000010 +00110000011001000000000000001000 +00010010110110000001100000000000 +10111110000001100000000001110100 +00010010111110010010000000000000 +10111100000110010000000011000000 +11101000011101110000000010000000 +00010110010000111101000000000000 +10111100000100100000000011101100 +00110010011100111111111111111111 +00110010111101111111111111111100 +10101010010100111111111111111111 +10111110001100101111111111101000 +00110010110101101111111111111100 +11101001111000010000000000000000 +11101010011000010000000000011100 +11101010110000010000000000100000 +11101010111000010000000000100100 +11101011000000010000000000101000 +11101011001000010000000000101100 +11101011010000010000000000110000 +11101011011000010000000000110100 +10110110000011110000000000001000 +00110000001000010000000000111000 +11101000101101110000000000000000 +10011001111111000011100000000000 +10000000000000000000000000000000 +00110010011100111111111111111111 +00110010111101111111111111111100 +10101010010100111111111111111111 +10111110000100101111111111000000 +00110010110101101111111111111100 +11101000011110000000000000000100 +11101000111101100000000000000000 +00110000011000111111111111111111 +00010110010000111001100000000000 +10111100000100100000000001110100 +11111000000101100000000000000000 +10111100000001111111111111010100 +10111110000110010000000001011000 +00110000100000000000000000000001 +11101000011110010000000100000000 +01000100100001001001110000000000 +10000100011001000001100000000000 +10111100000000110000000001000100 +11101000011110010000000100000100 +10000100011001000001100000000000 +10111100001000111111111110100100 +11101000110101110000000000000000 +10011001111111000011100000000000 +00010000101110110000000000000000 +10111000000100001111111110100100 +00110010011100111111111111111111 +00110010011100111111111111111111 +10101010010100111111111111111111 +10111110000100101111111101011100 +00110010011100111111111111111111 +10101010010100111111111111111111 +10111110001100101111111111110000 +00110010011100111111111111111111 +10111000000000001111111101001000 +10011001111111000011100000000000 +00110010011100111111111111111111 +10111000000100001111111101111000 +00110010111101111111111111111100 +11111010011110000000000000000100 +10111000000000001111111110010000 +11101000011110000000000000000100 +11101000111101100000000000000000 +00110000011000111111111111111111 +00010110010000111001100000000000 +10111100000100100000000001010100 +11111000000101100000000000000000 +10111100000001111111111100000000 +10111100000110010000000000111000 +00110000100000000000000000000001 +11101000011110010000000100000000 +01000100100001001001110000000000 +10000100011001000001100000000000 +10111100000000110000000000100100 +11101000011110010000000100000100 +10000100011001000001100000000000 +10111100001000110000000000110000 +11101000110101110000000000000000 +10011001111111000011100000000000 +00010000101110110000000000000000 +10111000000100001111111011010000 +00110010011100111111111111111111 +10011001111111000011100000000000 +00110010011100111111111111111111 +10111000000100001111111011000100 +00110010111101111111111111111100 +11111010011110000000000000000100 +10111000000000001111111110110000 +11101000101101110000000000000000 +10011001111111000011100000000000 +00110010011100111111111111111111 +10111000000100001111111010101000 +00110010111101111111111111111100 +11101000011000000000010101011100 +00110000001000011111111111100000 +11111010011000010000000000011100 +11111001111000010000000000000000 +00110010011000000000010101011100 +10101010010000111111111111111111 +10111100000100100000000000011000 +10011001111111000001100000000000 +00110010011100111111111111111100 +11101000011100110000000000000000 +10101010010000111111111111111111 +10111100001100101111111111110000 +11101001111000010000000000000000 +11101010011000010000000000011100 +10110110000011110000000000001000 +00110000001000010000000000100000 +00110000001000011111111111111000 +11011001111000000000100000000000 +10111001111101001111101110101000 +10000000000000000000000000000000 +10111001111101001111111110110000 +10000000000000000000000000000000 +11001001111000000000100000000000 +10110110000011110000000000001000 +00110000001000010000000000001000 +00110000001000011111111111111000 +11011001111000000000100000000000 +10111001111101001111101100101000 +10000000000000000000000000000000 +11001001111000000000100000000000 +10110110000011110000000000001000 +00110000001000010000000000001000 +11111111111111111111111111111111 +00000000000000000000000000000000 +11111111111111111111111111111111 +00000000000000000000000000000000 +00000000000000000000010110001100 +01000011000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000010101101000 +00000000000000000000000000000001 +00000000000000000000010110001100 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000010101110000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +00000000000000000000000000000000 +11111111000000000000000000000000 Index: bin2str/ram0.hstr =================================================================== --- bin2str/ram0.hstr (nonexistent) +++ bin2str/ram0.hstr (revision 34) @@ -0,0 +1,419 @@ +B8080050 +00000000 +B80802BC +00000000 +B80802CC +00000000 +00000000 +00000000 +B80802C4 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +31A00688 +30400578 +30200E98 +B9F400C0 +80000000 +B9F40270 +30A30000 +B8000000 +E0600688 +3021FFE4 +F9E10000 +BC030014 +B8000040 +F8600580 +99FC2000 +80000000 +E8600580 +E8830000 +BE24FFEC +30630004 +B0000000 +30600000 +BC030010 +30A00680 +99FC1800 +80000000 +30600001 +F0600688 +E9E10000 +B60F0008 +3021001C +B0000000 +30600000 +3021FFE4 +F9E10000 +30A00680 +30C0068C +BC03000C +99FC1800 +80000000 +E8600684 +B0000000 +30800000 +BC030014 +30A00684 +BC04000C +99FC2000 +80000000 +E9E10000 +B60F0008 +3021001C +2021FFEC +F9E10000 +20C00688 +20E00688 +06463800 +BC720014 +F8060000 +20C60004 +06463800 +BC92FFF4 +20C00688 +20E006A8 +06463800 +BC720014 +F8060000 +20C60004 +06463800 +BC92FFF4 +B9F400E4 +80000000 +B9F403B0 +80000000 +20C00000 +20E00000 +B9F4005C +20A00000 +32630000 +B9F403B8 +80000000 +B9F4005C +80000000 +C9E10000 +30730000 +B60F0008 +20210014 +90A50060 +B000A500 +F8A00000 +B60F0008 +80000000 +BE050014 +30A5FFFF +80000000 +BE25FFFC +30A5FFFF +B60F0008 +80000000 +3021FFE4 +F9E10000 +B9F4FFC8 +30A00041 +B800FFF8 +94700010 +A4630010 +BC23FFF8 +94608001 +B0002000 +A4630000 +BC230018 +10800800 +30600400 +90630001 +10841800 +10202000 +94710010 +B60F0008 +80000000 +94710010 +B60F0008 +80000000 +94700010 +A4630010 +BC23FFF8 +B60F0008 +80000000 +94700010 +A4630010 +BC23FFF8 +94608001 +B0002000 +A4630000 +BC230050 +10800800 +30600400 +90630001 +14C32000 +10203000 +10A40000 +30E00EA8 +16472003 +BCB20020 +15040000 +10862800 +E8650000 +30A50004 +16472803 +BE52FFF0 +D8644000 +94710010 +80000000 +B800FFFC +94710010 +B60F0008 +80000000 +B6110000 +80000000 +B6910000 +80000000 +B62E0000 +80000000 +3021FFE0 +10C00000 +FA61001C +F9E10000 +B9F40024 +12650000 +E8A0056C +E8650028 +BC03000C +99FC1800 +80000000 +B9F4FD6C +10B30000 +E860056C +3021FFC8 +FB410030 +FB610034 +F9E10000 +FA61001C +FAC10020 +FAE10024 +FB010028 +FB21002C +EB030048 +13650000 +BE180050 +13460000 +E8780004 +EB380088 +3263FFFF +BC53003C +64930402 +30640008 +12D81800 +BE060074 +12F92000 +BC1900C0 +E8770080 +1643D000 +BC1200EC +3273FFFF +32F7FFFC +AA53FFFF +BE32FFE8 +32D6FFFC +E9E10000 +EA61001C +EAC10020 +EAE10024 +EB010028 +EB21002C +EB410030 +EB610034 +B60F0008 +30210038 +E8B70000 +99FC3800 +80000000 +3273FFFF +32F7FFFC +AA53FFFF +BE12FFC0 +32D6FFFC +E8780004 +E8F60000 +3063FFFF +16439800 +BC120074 +F8160000 +BC07FFD4 +BE190058 +30800001 +E8790100 +44849C00 +84641800 +BC030044 +E8790104 +84641800 +BC23FFA4 +E8D70000 +99FC3800 +10BB0000 +B810FFA4 +3273FFFF +3273FFFF +AA53FFFF +BE12FF5C +3273FFFF +AA53FFFF +BE32FFF0 +3273FFFF +B800FF48 +99FC3800 +3273FFFF +B810FF78 +32F7FFFC +FA780004 +B800FF90 +E8780004 +E8F60000 +3063FFFF +16439800 +BC120054 +F8160000 +BC07FF00 +BC190038 +30800001 +E8790100 +44849C00 +84641800 +BC030024 +E8790104 +84641800 +BC230030 +E8D70000 +99FC3800 +10BB0000 +B810FED0 +3273FFFF +99FC3800 +3273FFFF +B810FEC4 +32F7FFFC +FA780004 +B800FFB0 +E8B70000 +99FC3800 +3273FFFF +B810FEA8 +32F7FFFC +E860055C +3021FFE0 +FA61001C +F9E10000 +3260055C +AA43FFFF +BC120018 +99FC1800 +3273FFFC +E8730000 +AA43FFFF +BC32FFF0 +E9E10000 +EA61001C +B60F0008 +30210020 +3021FFF8 +D9E00800 +B9F4FBA8 +80000000 +B9F4FFB0 +80000000 +C9E00800 +B60F0008 +30210008 +3021FFF8 +D9E00800 +B9F4FB28 +80000000 +C9E00800 +B60F0008 +30210008 +FFFFFFFF +00000000 +FFFFFFFF +00000000 +0000058C +43000000 +00000000 +00000000 +00000000 +00000568 +00000001 +0000058C +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000570 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +00000000 +FF000000 Index: ihex2mif/ihex2mif =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: ihex2mif/ihex2mif =================================================================== --- ihex2mif/ihex2mif (revision 28) +++ ihex2mif/ihex2mif (nonexistent)
ihex2mif/ihex2mif 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

powered by: WebSVN 2.1.0

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