- Timestamp:
- 2005-12-13T11:23:14Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91ef0d95
- Parents:
- 5bb8e45
- Location:
- arch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/smp/mps.c
r5bb8e45 r5a95b25 323 323 324 324 /* this ioapic is marked unusable */ 325 if ( ioa->io_apic_flags & 1== 0)325 if ((ioa->io_apic_flags & 1) == 0) 326 326 return; 327 327 -
arch/mips32/src/debugger.c
r5bb8e45 r5a95b25 232 232 panic("Weird breakpoint state.\n"); 233 233 if (!cur->executing) { 234 printf("***Breakpoint %d: %p in %s.\n", i,234 printf("***Breakpoint %d: 0x%p in %s.\n", i, 235 235 pstate->epc,symbol); 236 236 /* Return first instruction back */ … … 249 249 } 250 250 } else { 251 printf("***Breakpoint %p in %s.\n", pstate->epc, symbol);251 printf("***Breakpoint 0x%p in %s.\n", pstate->epc, symbol); 252 252 /* Move on to next instruction */ 253 253 pstate->epc += 4; -
arch/mips32/src/exception.c
r5bb8e45 r5a95b25 112 112 } 113 113 114 #ifdef CONFIG_FPU_LAZY 114 115 static void cpuns_exception(int n, void *data) 115 116 { … … 119 120 panic("unhandled Coprocessor Unusable Exception\n"); 120 121 } 122 #endif 121 123 122 124 static void interrupt_exception(int n, void *pstate) -
arch/mips32/src/fmath.c
r5bb8e45 r5a95b25 44 44 double fmath_get_decimal_exponent(double num) 45 45 { //TODO: 46 double value;46 // double value; 47 47 // log10(2)*log2(x) => log10(x) 48 48 /* __asm__ __volatile__ ( \ … … 51 51 "fyl2x #count st(0)*log2(st(1))->st(1); pop st(0) \n\t" \ 52 52 : "=t" (value) : "0"(num) ); 53 */ return value;53 */ return 1.0; 54 54 55 55 }
Note:
See TracChangeset
for help on using the changeset viewer.