@@ -236,9 +236,9 @@ void init(void)
236
236
cprint (4 , COL_MID ,"Testing: " );
237
237
cprint (5 , COL_MID ,"Pattern: " );
238
238
cprint (1 , 0 , "CLK: (32b Mode)" );
239
- cprint (2 , 0 , "L1 Ca$sh : Unknown " );
240
- cprint (3 , 0 , "L2 Ca$sh : Unknown " );
241
- cprint (4 , 0 , "L3 Ca$sh : None " );
239
+ cprint (2 , 0 , "L1 Ca$h : Unknown " );
240
+ cprint (3 , 0 , "L2 Ca$h : Unknown " );
241
+ cprint (4 , 0 , "L3 Ca$h : None " );
242
242
cprint (5 , 0 , "Memory : " );
243
243
cprint (6 , 0 , "------------------------------------------------------------------------------" );
244
244
cprint (7 , 0 , "Core#:" );
@@ -1070,7 +1070,7 @@ void cpu_cache_speed()
1070
1070
/* To measure L1 cache speed we use a block size that is 1/4th */
1071
1071
/* of the total L1 cache size since half of it is for instructions */
1072
1072
if (l1_cache ) {
1073
- cprint (2 , 0 , "L1 Cache : K " );
1073
+ cprint (2 , 0 , "L1 Ca$h : K " );
1074
1074
dprint (2 , 11 , l1_cache , 3 , 0 );
1075
1075
if ((speed = memspeed (STEST_ADDR , (l1_cache /2 )* 1024 , 200 ))) {
1076
1076
cprint (2 , 16 , " MB/s" );
@@ -1083,7 +1083,7 @@ void cpu_cache_speed()
1083
1083
/* the size of the L1 cache. We have to fudge if the L1 */
1084
1084
/* cache is bigger than the L2 */
1085
1085
if (l2_cache ) {
1086
- cprint (3 , 0 , "L2 Cache : K " );
1086
+ cprint (3 , 0 , "L2 Ca$h : K " );
1087
1087
dprint (3 , 10 , l2_cache , 4 , 0 );
1088
1088
1089
1089
if (l2_cache < l1_cache ) {
@@ -1102,7 +1102,7 @@ void cpu_cache_speed()
1102
1102
1103
1103
if (l3_cache )
1104
1104
{
1105
- cprint (4 , 0 , "L3 Cache : K " );
1105
+ cprint (4 , 0 , "L3 Ca$h : K " );
1106
1106
aprint (4 , 10 , l3_cache /4 );
1107
1107
//dprint(4, 10, l3_cache, 4, 0);
1108
1108
0 commit comments