URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [m68k/] [apollo/] [dn_debug.c] - Rev 1275
Go to most recent revision | Compare with Previous | Blame | View Log
#define DN_DEBUG_BUFFER_BASE 0x82800000 #define DN_DEBUG_BUFFER_SIZE 8*1024*1024 static char *current_dbg_ptr=DN_DEBUG_BUFFER_BASE; int dn_deb_printf(const char *fmt, ...) { va_list args; int i; if(current_dbg_ptr<(DN_DEBUG_BUFFER_BASE + DN_DEBUG_BUFFER_SIZE)) { va_start(args,fmt); i=vsprintf(current_dbg_ptr,fmt,args); va_end(args); current_dbg_ptr+=i; return i; } else return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log