diff options
author | rsc <rsc> | 2007-08-28 19:25:04 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-28 19:25:04 +0000 |
commit | cffa9543012ee0bc2a1d355ed00839b03fe7ae0c (patch) | |
tree | 72af3d67a6e1deb91ab579774281472791c46e9b /bootasm.S | |
parent | 5573c8f296091a484e486dcf153ce60b7c632df3 (diff) | |
download | xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.tar.gz xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.tar.bz2 xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.zip |
nits
Diffstat (limited to 'bootasm.S')
-rw-r--r-- | bootasm.S | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,11 +67,11 @@ protcseg: # Set up the stack pointer and call into C. movl $start, %esp - call bootmain + call bootmain # If bootmain returns (it shouldn't), loop. spin: - jmp spin + jmp spin # Bootstrap GDT .p2align 2 # force 4 byte alignment |