diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index ac78d1c00..b162dbd7c 100644 --- a/include/common.h +++ b/include/common.h @@ -187,6 +187,7 @@ void	hang		(void) __attribute__ ((noreturn));  long int initdram (int);  int	display_options (void);  void	print_size (ulong, const char *); +int	print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);  /* common/main.c */  void	main_loop	(void); @@ -402,6 +403,11 @@ void		ppcSync(void);  void		ppcDcbz(unsigned long value);  #endif +#if defined (CONFIG_MPC83XX) +void		ppcDWload(unsigned int *addr, unsigned int *ret); +void		ppcDWstore(unsigned int *addr, unsigned int *value); +#endif +  /* $(CPU)/cpu.c */  int	checkcpu      (void);  int	checkicache   (void); |