summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/c_start.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/c_start.S')
-rw-r--r--src/arch/x86/c_start.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/c_start.S b/src/arch/x86/c_start.S
index 52aeb19b5753..02ddf75d12a7 100644
--- a/src/arch/x86/c_start.S
+++ b/src/arch/x86/c_start.S
@@ -44,7 +44,7 @@ _start:
call SetCodeSelector
#endif
- post_code(POST_ENTRY_C_START) /* post 13 */
+ post_code(POSTCODE_ENTRY_C_START) /* post 13 */
cld
@@ -80,7 +80,7 @@ _start:
* bss is cleared. Now we call the main routine and
* let it do the rest.
*/
- post_code(POST_PRE_HARDWAREMAIN) /* post 6e */
+ post_code(POSTCODE_PRE_HARDWAREMAIN) /* post 6e */
andl $0xFFFFFFF0, %esp
@@ -95,7 +95,7 @@ _start:
call main
/* NOTREACHED */
.Lhlt:
- post_code(POST_DEAD_CODE) /* post ee */
+ post_code(POSTCODE_DEAD_CODE) /* post ee */
hlt
jmp .Lhlt