source: rtems/c/src/lib/libbsp/arm/csb337/startup/umonsupp.c @ 3bbffec7

4.115
Last change on this file since 3bbffec7 was 3bbffec7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/07/11 at 18:10:52

2011-12-07 Ralf Corsépius <ralf.corsepius@…>

  • startup/umonsupp.c: Include <rtems/umon.h> (Missing prototype).
  • Property mode set to 100644
File size: 615 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2009.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
6 *  from NCB - Sistemas Embarcados Ltda. (Brazil)
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <bsp.h>
16#include <rtems/umon.h>
17
18/*
19 * BSP specific routine to help when calling monConnect().  This
20 * returns the value known to uMon as MONCOMPTR.
21 */
22
23void *rtems_bsp_get_umon_monptr(void)
24{
25  return (void *)0x10000020;
26}
27
Note: See TracBrowser for help on using the repository browser.