2009-10-12 Joel Sherrill <joel.sherrill@OARcorp.com>

* include/bsp.h: BSP has plenty of memory.
	* startup/cmain.c: Comment out prints.
This commit is contained in:
Joel Sherrill
2009-10-12 13:30:04 +00:00
parent 7577a80a5a
commit 1fbf17b679
3 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2009-10-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h: BSP has plenty of memory.
* startup/cmain.c: Comment out prints.
2009-10-12 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* linkcmds:
increase size of ROM to 4 Meg

View File

@@ -26,8 +26,6 @@ extern "C" {
#include <rtems/console.h>
#include <rtems/clockdrv.h>
#define BSP_SMALL_MEMORY 1
/*
* Convert decrementer value to tenths of microseconds (used by shared timer
* driver).

View File

@@ -1,3 +1,6 @@
/*
* $Id$
*/
static void
__outb(int port, unsigned char v)
@@ -46,9 +49,9 @@ void cmain (void)
__bzero (__sbss2_start , __sbss2_end - __sbss2_start);
__bzero (__sbss_start , __sbss_end - __sbss_start);
__bzero (__bss_start , __bss_end - __bss_start);
printk( "start of BSP\n");
/* printk( "start of BSP\n"); */
boot_card(0);
printk( "end of BSP\n");
/* printk( "end of BSP\n"); */
__outb (0x92, 0x01);
while (1)
;