8 /* These are declarations of exported functions available in C code */
9 unsigned long get_version(void);
12 void putc(const char);
13 void puts(const char*);
14 void printf(const char* fmt, ...);
15 void install_hdlr(int, interrupt_handler_t*, void*);
19 void udelay(unsigned long);
20 unsigned long get_timer(unsigned long);
21 void vprintf(const char *, va_list);
23 #if (CONFIG_COMMANDS & CFG_CMD_I2C)
24 int i2c_write (uchar, uint, int , uchar* , int);
25 int i2c_read (uchar, uint, int , uchar* , int);
26 #endif /* CFG_CMD_I2C */
28 void app_startup(char **);
30 #endif /* ifndef __ASSEMBLY__ */
33 #define EXPORT_FUNC(x) XF_ ## x ,
42 #if defined(CONFIG_I386)
43 extern gd_t *global_data;
46 #endif /* __EXPORTS_H__ */