2001-03-08 Joel Sherrill <joel@OARcorp.com>

* start/start.S, startup/bspstart.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-03-08 17:35:39 +00:00
parent 34f5067fef
commit 9d64bc733d
3 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2001-03-08 Joel Sherrill <joel@OARcorp.com>
* start/start.S, startup/bspstart.c: Removed warnings.
2002-03-05 Greg Menke <gregory.menke@gsfc.nasa.gov> 2002-03-05 Greg Menke <gregory.menke@gsfc.nasa.gov>
* startup/gdb-support.c: Added calls into the mips-support gdb stub * startup/gdb-support.c: Added calls into the mips-support gdb stub

View File

@@ -33,7 +33,9 @@
** Added cache flush routines. ** Added cache flush routines.
*/ */
#ifndef LANGUAGE_ASSEMBLY
#define LANGUAGE_ASSEMBLY #define LANGUAGE_ASSEMBLY
#endif
#include <asm.h> #include <asm.h>

View File

@@ -68,7 +68,6 @@ void bsp_pretasking_hook(void)
extern int HeapSize; extern int HeapSize;
void *heapStart = &HeapBase; void *heapStart = &HeapBase;
unsigned long heapSize = (unsigned long)&HeapSize; unsigned long heapSize = (unsigned long)&HeapSize;
unsigned long ramSpace;
bsp_libc_init(heapStart, (unsigned32) heapSize, 0); bsp_libc_init(heapStart, (unsigned32) heapSize, 0);