summaryrefslogtreecommitdiff
path: root/asm/multiboot.s
diff options
context:
space:
mode:
Diffstat (limited to 'asm/multiboot.s')
-rw-r--r--asm/multiboot.s4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/multiboot.s b/asm/multiboot.s
index c26b647..837aa0b 100644
--- a/asm/multiboot.s
+++ b/asm/multiboot.s
@@ -13,10 +13,10 @@
.set MAGIC, 0x1BADB002 # 'magic number' lets bootloader find the header
.set CHECKSUM, -(MAGIC + FLAGS) # checksum of above, to prove we are multiboot
-
+# entry point for application processors at 0x7000
.section .smp
.code16
-jmp .
+call smp_go
# Declare a header as in the Multiboot Standard. We put this into a special
# section so we can force the header to be in the start of the final program.