2009-03-26 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am, console/console.c, startup/linkcmds: Now links but
	clearly the starting stack overlaps regular memory and needs to be
	moved.
This commit is contained in:
Joel Sherrill
2009-03-26 11:18:03 +00:00
parent 8b074ee693
commit d785ce4a56
4 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2009-03-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, console/console.c, startup/linkcmds: Now links but
clearly the starting stack overlaps regular memory and needs to be
moved.
2009-03-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, console/console.c: Use shared polled console framework.

View File

@@ -35,7 +35,7 @@ libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
../../shared/bspreset_loop.c ../../shared/bsppost.c startup/bspstart.c \
../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
../../shared/bootcard.c ../../shared/sbrk.c startup/setvec.c \
../../shared/gnatinstallhandler.c
../../shared/gnatinstallhandler.c ../../shared/bsppredriverhook.c
# clock
libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
# console

View File

@@ -52,6 +52,10 @@ bool is_character_ready(
return false;
}
void console_initialize_hardware(void)
{
}
/*
* This routine reads a character from the SOURCE.
*

View File

@@ -242,6 +242,7 @@ SECTIONS
. = ALIGN(32 / 8);
__bss_end = ABSOLUTE(.);
WorkAreaBase = .;
} > onchip_memory_0
/*