summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/x86/c_start.S2
-rw-r--r--src/include/console/post_codes.h14
2 files changed, 8 insertions, 8 deletions
diff --git a/src/arch/x86/c_start.S b/src/arch/x86/c_start.S
index 19532d82dc..f55ab6e06e 100644
--- a/src/arch/x86/c_start.S
+++ b/src/arch/x86/c_start.S
@@ -89,7 +89,7 @@ _start:
* bss is cleared. Now we call the main routine and
* let it do the rest.
*/
- post_code(POST_PRE_HARDWAREMAIN) /* post fe */
+ post_code(POST_PRE_HARDWAREMAIN) /* post 6e */
andl $0xFFFFFFF0, %esp
diff --git a/src/include/console/post_codes.h b/src/include/console/post_codes.h
index 677cd36545..9682e4db6c 100644
--- a/src/include/console/post_codes.h
+++ b/src/include/console/post_codes.h
@@ -105,6 +105,13 @@
#define POST_ENABLING_CACHE 0x60
/**
+ * \brief Pre call to RAM stage main()
+ *
+ * POSTed right before RAM stage main() is called from c_start.S
+ */
+#define POST_PRE_HARDWAREMAIN 0x6e
+
+/**
* \brief Before Device Probe
*
* Boot State Machine: bs_pre_device()
@@ -175,13 +182,6 @@
#define POST_BS_WRITE_TABLES 0x79
/**
- * \brief Pre call to RAM stage main()
- *
- * POSTed right before RAM stage main() is called from c_start.S
- */
-#define POST_PRE_HARDWAREMAIN 0x79
-
-/**
* \brief Load Payload
*
* Boot State Machine: bs_payload_load()