Skip to content
Snippets Groups Projects
Commit c35c064e authored by rsc's avatar rsc
Browse files

cmain -> bootmain

parent fc210467
No related branches found
No related tags found
No related merge requests found
......@@ -67,9 +67,9 @@ protcseg:
# Set up the stack pointer and call into C.
movl $start, %esp
call cmain
call bootmain
# If cmain returns (it shouldn't), loop.
# If bootmain returns (it shouldn't), loop.
spin:
jmp spin
......
......@@ -15,7 +15,7 @@
void readseg(uint, uint, uint);
void
cmain(void)
bootmain(void)
{
struct elfhdr *elf;
struct proghdr *ph, *eph;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment