@@ -236,9 +236,9 @@ void init(void)
236236 cprint (4 , COL_MID ,"Testing: " );
237237 cprint (5 , COL_MID ,"Pattern: " );
238238 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 " );
242242 cprint (5 , 0 , "Memory : " );
243243 cprint (6 , 0 , "------------------------------------------------------------------------------" );
244244 cprint (7 , 0 , "Core#:" );
@@ -1070,7 +1070,7 @@ void cpu_cache_speed()
10701070 /* To measure L1 cache speed we use a block size that is 1/4th */
10711071 /* of the total L1 cache size since half of it is for instructions */
10721072 if (l1_cache ) {
1073- cprint (2 , 0 , "L1 Cache : K " );
1073+ cprint (2 , 0 , "L1 Ca$h : K " );
10741074 dprint (2 , 11 , l1_cache , 3 , 0 );
10751075 if ((speed = memspeed (STEST_ADDR , (l1_cache /2 )* 1024 , 200 ))) {
10761076 cprint (2 , 16 , " MB/s" );
@@ -1083,7 +1083,7 @@ void cpu_cache_speed()
10831083 /* the size of the L1 cache. We have to fudge if the L1 */
10841084 /* cache is bigger than the L2 */
10851085 if (l2_cache ) {
1086- cprint (3 , 0 , "L2 Cache : K " );
1086+ cprint (3 , 0 , "L2 Ca$h : K " );
10871087 dprint (3 , 10 , l2_cache , 4 , 0 );
10881088
10891089 if (l2_cache < l1_cache ) {
@@ -1102,7 +1102,7 @@ void cpu_cache_speed()
11021102
11031103 if (l3_cache )
11041104 {
1105- cprint (4 , 0 , "L3 Cache : K " );
1105+ cprint (4 , 0 , "L3 Ca$h : K " );
11061106 aprint (4 , 10 , l3_cache /4 );
11071107 //dprint(4, 10, l3_cache, 4, 0);
11081108
0 commit comments