Changeset 2f40fe4 in mainline for arch/mips32/src/cache.c
- Timestamp:
- 2006-07-01T21:40:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5eabe73
- Parents:
- 7ee0e2f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/cache.c
r7ee0e2f r2f40fe4 27 27 */ 28 28 29 29 /** @addtogroup mips32 30 30 * @{ 31 31 */ … … 34 34 35 35 #include <arch/cache.h> 36 #include <arch/exception.h> 37 #include <typedefs.h> 36 38 #include <panic.h> 37 39 38 void cache_error( void)40 void cache_error(istate_t *istate) 39 41 { 40 panic("cache_error exception \n");42 panic("cache_error exception (epc=%p)\n", istate->epc); 41 43 } 42 44 43 45 /** @} 44 46 */ 45 47
Note:
See TracChangeset
for help on using the changeset viewer.