19 lines
655 B
ArmAsm
19 lines
655 B
ArmAsm
/* This file assembles the start of the romstage program by the order of the
|
|
* includes. Thus, it's extremely important that one pays very careful
|
|
* attention to the order of the includes. */
|
|
|
|
#include <arch/x86/prologue.inc>
|
|
#include <cpu/x86/32bit/entry32.inc>
|
|
#include <cpu/x86/fpu_enable.inc>
|
|
#if CONFIG(SSE)
|
|
#include <cpu/x86/sse_enable.inc>
|
|
#endif
|
|
|
|
/*
|
|
* The assembly.inc is generated based on the requirements of the mainboard.
|
|
* For example, for ROMCC boards the MAINBOARDDIR/romstage.c would be
|
|
* processed by ROMCC and added. In non-ROMCC boards the chipsets'
|
|
* cache-as-ram setup files would be here.
|
|
*/
|
|
#include <generated/assembly.inc>
|