Replacement for buggy startup source
[fw/sdcc] / device / examples / cpu_tools.h
1 /*-------------------------------------------------------------------------
2   CPU depending Declarations Header file
3
4    Written By - Dipl.-Ing. (FH) Michael Schmitt
5     Bug-Fix Oct 15 1999
6     mschmitt@mainz-online.de
7     michael.schmitt@t-online.de
8
9    This program is free software; you can redistribute it and/or modify it
10    under the terms of the GNU General Public License as published by the
11    Free Software Foundation; either version 2, or (at your option) any
12    later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23    In other words, you are welcome to use, share and improve this program.
24    You are forbidden to forbid anyone else to use, share and improve
25    what you give them.   Help stamp out software-hoarding!
26 -------------------------------------------------------------------------*/
27
28 void CpuIdle( void );
29 void WatchDog( void );
30 void init_hardware( void );
31 void delayMsec( unsigned long delayTime );
32 void timer0_isr (void) interrupt 1;
33 void ser_handler (void) interrupt 4;
34 void putchar(  char Byte );
35 unsigned char getchar( void );