Skip to content

Commit a3be446

Browse files
committed
fixed some screen stuff
1 parent 18fb639 commit a3be446

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

init.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -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 Ca$h: 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 Ca$h: 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 Ca$h: 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

Comments
 (0)