diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -89,7 +89,8 @@ bootothers(void) char *stack; // Write bootstrap code to unused memory at 0x7000. - // The linker has placed the image of bootother.S in _binary_bootother_start. + // The linker has placed the image of bootother.S in + // _binary_bootother_start. code = (uchar*)0x7000; memmove(code, _binary_bootother_start, (uint)_binary_bootother_size); @@ -111,3 +112,7 @@ bootothers(void) ; } } + +//PAGEBREAK! +// Blank page. + |