diff options
author | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-07-24 13:33:43 -0400 |
commit | a77287e9244ae5dac7060c0b8817bc195325af0c (patch) | |
tree | fbf856ce361a9bc75abe4c484ecaff324607dd71 /kernel/console.c | |
parent | b4f89bb5290cff5926e5a735487b024f8314e028 (diff) | |
download | xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.gz xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.tar.bz2 xv6-labs-a77287e9244ae5dac7060c0b8817bc195325af0c.zip |
no more PAGEBREAK
Diffstat (limited to 'kernel/console.c')
-rw-r--r-- | kernel/console.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/console.c b/kernel/console.c index 736d96a..fe21405 100644 --- a/kernel/console.c +++ b/kernel/console.c @@ -59,9 +59,6 @@ printptr(uint64 x) { consputc(digits[x >> (sizeof(uint64) * 8 - 4)]); } - -//PAGEBREAK: 50 - // Print to the console. only understands %d, %x, %p, %s. void printf(char *fmt, ...) |