david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Move stack out to separate object, so that having a stack doesn't drag in

setup.S.
This commit is contained in:
Michael Brown 2006-05-02 14:57:48 +00:00
parent 5463169c1a
commit 8f62b39c03
2 changed files with 13 additions and 9 deletions

View File

@ -158,12 +158,3 @@ setup:
popfl
lret
/****************************************************************************
* Internal stack
****************************************************************************
*/
.section ".stack"
.align 8
_stack:
.space 4096
_estack:

View File

@ -0,0 +1,13 @@
.arch i386
/****************************************************************************
* Internal stack
****************************************************************************
*/
.section ".stack"
.align 8
.globl _stack
_stack:
.space 4096
.globl _estack
_estack: