romloader.h
659 Bytes
#ifndef _ROMLOADER_H
#define _ROMLOADER_H
#ifndef NULL
#define NULL 0
#endif
/* exports from string.c */
extern int printf(const char *, ...);
extern char * strcat(char *, const char *);
extern char * strchr(const char *, int);
extern int strcmp(const char *, const char *);
extern unsigned int strlen(const char *);
extern char * strcpy(char *, const char *);
extern void _CacheConfigure(void);
extern void InvalDCache(void *, int);
extern void InvalICache(void *, int);
/* exports from exceptasm.s */
extern int _ExceptionPreamble[];
extern void _Panic(void);
#endif /* _ROMLOADER_H */