Formatting fixes and removed commented code only.

This commit is contained in:
Justin C. Miller
2018-03-23 09:04:51 -07:00
parent cdef82f06f
commit d438392ed5
7 changed files with 173 additions and 189 deletions

View File

@@ -1,8 +1,8 @@
__attribute__((section(".text.entry")))
void kernel_main() {
volatile register int foo = 0x1a1b1c10;
volatile register int bar = 0;
volatile register int foo = 0x1a1b1c10;
volatile register int bar = 0;
while(1)
foo = foo | 0xfffffff0 + bar++ | 0xf;
while(1)
foo = foo | 0xfffffff0 + bar++ | 0xf;
}