moved pin/bank configuration to global init routines to system.c + added
[my-code/arm.git] / betty / system.h
1 /*
2  * system.h - header file for misc system specific stuff
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #ifndef SYSTEM_H
9 #define SYSTEM_H
10
11 #include "lpc2xxx.h"
12 #include "types.h"
13
14 /* function prototypes */
15 void pll_init(void);
16 void ext_mem_init(void);
17 void pin_init(void);
18 void mmap_init(u8 memtype);
19 void pause(u32 cnt);
20
21 #endif