WIP: Bring SMP support #11

Stängd
harraiken vill sammanfoga 8 incheckningar från s[2]s in i master
2 ändrade filer med 27 tillägg och 0 borttagningar
Showing only changes of commit ca87eab663 - Show all commits

Visa fil

@@ -12,6 +12,21 @@
.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.
*

Visa fil

@@ -12,6 +12,18 @@
.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.
*