|
Message
From: cvs at opencores.org<cvs@o...>
Date: Mon Feb 12 06:15:53 CET 2007
Subject: [cvs-checkins] MODIFIED: mlite ...
Date: 00/07/02 12:06:15 Modified: mlite/tools convert.c Log: Changed test.exe to test.axf Revision Changes Path 1.13 mlite/tools/convert.c http://www.opencores.org/cvsweb.shtml/mlite/tools/convert.c.diff?r1=1.12&r2=1.13 (In the diff below, changes in quantity of whitespace are not shown.) Index: convert.c =================================================================== RCS file: /cvsroot/rhoads/mlite/tools/convert.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- convert.c 6 Jan 2007 03:13:32 -0000 1.12 +++ convert.c 12 Feb 2007 05:15:53 -0000 1.13 @@ -1,7 +1,7 @@ //convert.c by Steve Rhoads 4/26/01 //Now uses the ELF format (get gccmips_elf.zip) //set $gp and zero .sbss and .bss -//Reads test.exe and creates code.txt +//Reads test.axf and creates code.txt #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -100,11 +100,11 @@ (void)argc; (void)argv; - printf("test.exe -> code.txt & test.bin\n"); - infile = fopen("test.exe", "rb"); + printf("test.axf -> code.txt & test.bin\n"); + infile = fopen("test.axf", "rb"); if(infile == NULL) { - printf("Can't open test.exe"); + printf("Can't open test.axf"); return 0; } buf = (unsigned char *)malloc(BUF_SIZE);
|
 |