Formatting
This commit is contained in:
parent
069ce17238
commit
0ed28ab34c
1 changed files with 6 additions and 1 deletions
|
@ -26,7 +26,12 @@ kmain()
|
||||||
console.clear(kernel::Console::Color::Blue);
|
console.clear(kernel::Console::Color::Blue);
|
||||||
console.writeString("Hello world!\n");
|
console.writeString("Hello world!\n");
|
||||||
|
|
||||||
// TODO: The performance of this loop slowed down a *lot* (7-8 orders of magnitude according to the busy loop) when I moved this code from kearly() to here. I wonder if it has something to do with object initialization? Should probably investigate some.
|
/*
|
||||||
|
* TODO: The performance of this loop slowed down a _lot_ (7 to 8 orders of
|
||||||
|
* magnitude according to the busy loop) when I moved this code from
|
||||||
|
* kearly() to here. I wonder if it has something to do with object
|
||||||
|
* initialization? Should probably investigate some.
|
||||||
|
*/
|
||||||
volatile int foo = 0;
|
volatile int foo = 0;
|
||||||
int j = 0;
|
int j = 0;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue