diff options
author | rsc <rsc> | 2007-08-27 12:48:20 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-27 12:48:20 +0000 |
commit | 7bb73cdbc78a1f0df07539125e681c084b66d876 (patch) | |
tree | fe81a7404feba32d384dff35c83d9662af018dd1 /bootother.S | |
parent | 8e67005320c56cac63654bcf61a8128bd89e4ff9 (diff) | |
download | xv6-labs-7bb73cdbc78a1f0df07539125e681c084b66d876.tar.gz xv6-labs-7bb73cdbc78a1f0df07539125e681c084b66d876.tar.bz2 xv6-labs-7bb73cdbc78a1f0df07539125e681c084b66d876.zip |
nits
Diffstat (limited to 'bootother.S')
-rw-r--r-- | bootother.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootother.S b/bootother.S index 5e8348e..f243f41 100644 --- a/bootother.S +++ b/bootother.S @@ -15,8 +15,8 @@ # # This code is identical to bootasm.S except: # - it does not need to enable A20 -# - it uses 0(start-4) for the %esp -# - it jumps to 0(start-8) instead of calling cmain +# - it uses the address at start-4 for the %esp +# - it jumps to the address at start-8 instead of calling cmain .set PROT_MODE_CSEG, 0x8 # kernel code segment selector .set PROT_MODE_DSEG, 0x10 # kernel data segment selector |