From cf4b1ad90bcaeeb0c8458098c87948f61d408f94 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sat, 19 Feb 2011 21:17:55 -0500 Subject: xv6: formatting, cleanup, rev5 (take 2) --- main.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 8a5f7f1..e6d81f3 100644 --- a/main.c +++ b/main.c @@ -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. + -- cgit v1.2.3