- no full featured xcpt for bootloaders
- clear bss git-svn-id: http://moon:8086/svn/mips@29 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
@@ -17,7 +17,7 @@ void _exit(int reason)
|
||||
void libsys_init()
|
||||
{
|
||||
// Initialzie interrupt support
|
||||
interrupt_init();
|
||||
// interrupt_init();
|
||||
}
|
||||
|
||||
// MIPS specific
|
||||
@@ -110,10 +110,9 @@ void _putchar(char c)
|
||||
writechar(c);
|
||||
}
|
||||
|
||||
int sputs(char *pStr)
|
||||
int sputs(char const *pStr)
|
||||
{
|
||||
char *start;
|
||||
start = pStr;
|
||||
char const *start = pStr;
|
||||
|
||||
while(*pStr)
|
||||
_putchar(*(pStr++));
|
||||
|
||||
Reference in New Issue
Block a user