2004-04-09 Joel Sherrill <joel@OARcorp.com>

PR 605/bsps
	* cpu.c: Do not use C++ style comments.
This commit is contained in:
Joel Sherrill
2004-04-09 14:52:27 +00:00
parent fbe21ef363
commit 424f2e40e9
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2004-04-09 Joel Sherrill <joel@OARcorp.com>
PR 605/bsps
* cpu.c: Do not use C++ style comments.
2004-04-03 Art Ferrer <arturo.b.ferrer@nasa.gov>
PR 598/bsps

View File

@@ -99,7 +99,7 @@ unsigned32 _CPU_ISR_Get_level( void )
mips_get_sr(sr);
//printf("current sr=%08X, ",sr);
/* printf("current sr=%08X, ",sr); */
#if __mips == 3
/* EXL bit and shift down hardware ints into bits 1 thru 6 */
@@ -112,7 +112,7 @@ unsigned32 _CPU_ISR_Get_level( void )
#else
#error "CPU ISR level: unknown MIPS level for SR handling"
#endif
//printf("intlevel=%02X\n",sr);
/* printf("intlevel=%02X\n",sr); */
return sr;
}