20 строки
276 B
C
20 строки
276 B
C
![]() |
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
/** @file
|
||
|
*
|
||
|
* Define the cache caracteristics of the platform
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef CACHE
|
||
|
#define CACHE 1
|
||
|
|
||
|
/* size of cache line - for now hardwire this to a reasonable
|
||
|
* value, and automate later - RLG */
|
||
|
#define CACHE_LINE_SIZE 128
|
||
|
|
||
|
|
||
|
#endif /* CACHE */
|