summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/startup/bspstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/nds/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/arm/nds/startup/bspstart.c56
1 files changed, 0 insertions, 56 deletions
diff --git a/c/src/lib/libbsp/arm/nds/startup/bspstart.c b/c/src/lib/libbsp/arm/nds/startup/bspstart.c
deleted file mode 100644
index 5a7ff1ab81..0000000000
--- a/c/src/lib/libbsp/arm/nds/startup/bspstart.c
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * RTEMS for Nintendo DS platform initialization.
- */
-
-/*
- * Copyright (c) 2008 by Matthieu Bucchianeri <mbucchia@gmail.com>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- *
- * http://www.rtems.org/license/LICENSE
- */
-
-#include <bsp.h>
-#include <bsp/bootcard.h>
-#include <bsp/linker-symbols.h>
-#include <bsp/irq.h>
-#include <nds.h>
-
-extern void defaultExceptionHandler(void);
-
-/*
- * start the platform.
- */
-void bsp_start (void)
-{
- /* initialize irq management */
- BSP_rtems_irq_mngt_init ();
-
- /* setup console mode for lower screen */
- irqEnable (IRQ_VBLANK);
- videoSetMode (0);
- videoSetModeSub (MODE_0_2D | DISPLAY_BG0_ACTIVE);
- vramSetBankC (VRAM_C_SUB_BG);
-
- SUB_BG0_CR = BG_MAP_BASE (31);
- BG_PALETTE_SUB[255] = RGB15 (31, 31, 31);
- consoleInitDefault ((u16 *) SCREEN_BASE_BLOCK_SUB (31),
- (u16 *) CHAR_BASE_BLOCK_SUB (0), 16);
-
- /* print status message */
- printk ("[+] kernel console started\n");
-
- /* set the cpu mode to system user */
- arm_cpu_mode = 0x1f;
-
- defaultExceptionHandler ();
-}
-
-/*
- * A few symbols needed by libnds but not used.
- */
-
-#include "../include/sys/iosupport.h"
-const devoptab_t *devoptab_list[STD_MAX];
-void *punixTime;