/* * Copyright (c) 2002 by Jay Monkman * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #include #include void bsp_reset(void) { #if ON_SKYEYE == 1 #define SKYEYE_MAGIC_ADDRESS (*(volatile unsigned int *)(0xb0000000)) SKYEYE_MAGIC_ADDRESS = 0xff; #else __asm__ volatile ("b _start"); #endif }