summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/core/stack.S
blob: 995c397cad1e609f490eb51a1db16e41c2d8c270 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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: