summaryrefslogtreecommitdiff
path: root/entry.S
diff options
context:
space:
mode:
Diffstat (limited to 'entry.S')
-rw-r--r--entry.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/entry.S b/entry.S
index f814aeb..4fd85c6 100644
--- a/entry.S
+++ b/entry.S
@@ -54,10 +54,10 @@ entry:
# Set up the stack pointer.
movl $(stack + STACK), %esp
- # Call main(), which switches to executing at
+ # Jump to main(), and switch to executing at
# high addresses. The indirect call is needed because
# the assembler produces a PC-relative instruction
- # for a direct call.
+ # for a direct jump.
mov $main, %eax
jmp *%eax