Files
ipxe/src/arch/x86/core/stack.S
Michael Brown f0ea1f4d77 [bios] Use an 8kB stack for x86_64
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2016-02-18 15:56:41 +00:00

22 lines
422 B
ArmAsm

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
.arch i386
#ifdef __x86_64__
#define STACK_SIZE 8192
#else
#define STACK_SIZE 4096
#endif
/****************************************************************************
* Internal stack
****************************************************************************
*/
.section ".stack", "aw", @nobits
.align 8
.globl _stack
_stack:
.space STACK_SIZE
.globl _estack
_estack: