summaryrefslogtreecommitdiff
path: root/asm/multiboot.s
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-31 11:49:07 +0200
committerMiguel <m.i@gmx.at>2018-08-31 11:49:07 +0200
commit47d7e8e4527c663dd1a0c04a4ea5624589464895 (patch)
treed6d5ef82f1089a9ab058b27c427c1463db0fae60 /asm/multiboot.s
parent4404fa9b3d98646f942e32146722a9d0a68edc13 (diff)
various improvmenets
* added debugging symbols to nasm output * started implementing an unified interrupt interface * moved smp entry point to kernel image!
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.