WIP: Bring SMP support #11

Closed
harraiken wants to merge 8 commits from harraiken/exectos:master into master
2 changed files with 27 additions and 0 deletions
Showing only changes of commit ca87eab663 - Show all commits

View File

@@ -12,6 +12,21 @@
.text .text
.global ArStartApplicationProcessor
ArStartApplicationProcessor:
/* 16-bit code (real mode) */
.code16
cli
cld
hlt
/* 32-bit code (protected mode) */
.code32
/* 64-bit code (long mode) */
.code64
/** /**
* This macro creates a trap handler for the specified vector. * This macro creates a trap handler for the specified vector.
* *

View File

@@ -12,6 +12,18 @@
.text .text
.global _ArStartApplicationProcessor
_ArStartApplicationProcessor:
/* 16-bit code (real mode) */
.code16
cli
cld
hlt
/* 32-bit code (protected mode) */
.code32
/** /**
* This macro creates a trap handler for the specified vector. * This macro creates a trap handler for the specified vector.
* *