root/Examples_CP-JR_ARM7_LPC2368/ETT_LPC2368_Examples/EasyWEB/Retarget.c

Revision 8, 0.9 kB (checked in by phil, 15 years ago)

Added Examples etc. from CD

Line 
1 /******************************************************************************/
2 /* RETARGET.C: 'Retarget' layer for target-dependent low level functions      */
3 /******************************************************************************/
4 /* This file is part of the uVision/ARM development tools.                    */
5 /* Copyright (c) 2005-2006 Keil Software. All rights reserved.                */
6 /* This software may only be used under the terms of a valid, current,        */
7 /* end user licence from KEIL for a compatible version of KEIL software       */
8 /* development tools. Nothing else gives you the right to use this software.  */
9 /******************************************************************************/
10
11 #include <rt_misc.h>
12
13 #pragma import(__use_no_semihosting_swi)
14
15 void _ttywrch(int ch) {
16   // Not used (No Output)
17 }
18
19 void _sys_exit(int return_code) {
20 label:  goto label;  /* endless loop */
21 }
Note: See TracBrowser for help on using the browser.