- removed \r

git-svn-id: http://moon:8086/svn/mips@170 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2021-04-09 12:50:43 +00:00
parent 8e74d1080e
commit 45e24e74a8
+5 -5
View File
@@ -59,7 +59,7 @@ void PrintCPUinfo(void)
result = StatusRegister_read();
sputs("Status : ");
print_word(result);
sputs("\r\n");
sputs("\n");
// Print Revision
result = RevisionRegister_read();
@@ -75,7 +75,7 @@ void PrintCPUinfo(void)
else
sputs("Unknown");
sputs("\r\n");
sputs("\n");
}
@@ -287,16 +287,16 @@ int main (void)
if (IS_ERROR(result))
break;
// printf("Iteration %d: Passed\r\n", cnt++);
// printf("Iteration %d: Passed\n", cnt++);
sputs("Iteration ");
print_word(cnt++);
sputs(": Passed\r\n");
sputs(": Passed\n");
}
*pReg = 0x40000000 | cnt;
sputs("Failed with error ");
print_word(result);
sputs(" \r\n");
sputs(" \n");
return 1;