diff options
author | Austin Clements <[email protected]> | 2011-09-04 15:56:16 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2011-09-04 15:56:16 -0400 |
commit | 310edc99feeaba8326defa82804e1976b69d22a5 (patch) | |
tree | f2e3cd5df354c8fed40132375fc35874ba55df6d | |
parent | 2fc6c35b2fd64a15d7c4cc54c9e8733c3632039d (diff) | |
download | xv6-labs-310edc99feeaba8326defa82804e1976b69d22a5.tar.gz xv6-labs-310edc99feeaba8326defa82804e1976b69d22a5.tar.bz2 xv6-labs-310edc99feeaba8326defa82804e1976b69d22a5.zip |
Fix stale comments in entryother.S
-rw-r--r-- | entryother.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/entryother.S b/entryother.S index a24eaf6..9f94cd3 100644 --- a/entryother.S +++ b/entryother.S @@ -11,11 +11,11 @@ # Because this code sets DS to zero, it must sit # at an address in the low 2^16 bytes. # -# Bootothers (in main.c) sends the STARTUPs one at a time. +# Startothers (in main.c) sends the STARTUPs one at a time. # It copies this code (start) at 0x7000. It puts the address of # a newly allocated per-core stack in start-4,the address of the # place to jump to (mpenter) in start-8, and the physical address -# of enterpgdir in start-12. +# of entrypgdir in start-12. # # This code is identical to bootasm.S except: # - it does not need to enable A20 |