| #ifndef __MON_SYS_CALL_H__ |
| #define __MON_SYS_CALL_H__ |
| /* These are declarations of exported functions available in C code */ |
| unsigned long get_version(void); |
| void printf(const char* fmt, ...); |
| void install_hdlr(int, interrupt_handler_t*, void*); |
| void udelay(unsigned long); |
| unsigned long get_timer(unsigned long); |
| void vprintf(const char *, va_list); |
| #if (CONFIG_COMMANDS & CFG_CMD_I2C) |
| int i2c_write (uchar, uint, int , uchar* , int); |
| int i2c_read (uchar, uint, int , uchar* , int); |
| void app_startup(char **); |
| #endif /* ifndef __ASSEMBLY__ */ |
| #define EXPORT_FUNC(x) XF_ ## x , |
| extern gd_t *global_data; |