mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-23 19:51:46 +00:00
Move stack out to separate object, so that having a stack doesn't drag in
setup.S.
This commit is contained in:
parent
5463169c1a
commit
8f62b39c03
@ -158,12 +158,3 @@ setup:
|
||||
popfl
|
||||
lret
|
||||
|
||||
/****************************************************************************
|
||||
* Internal stack
|
||||
****************************************************************************
|
||||
*/
|
||||
.section ".stack"
|
||||
.align 8
|
||||
_stack:
|
||||
.space 4096
|
||||
_estack:
|
||||
|
13
src/arch/i386/core/stack.S
Normal file
13
src/arch/i386/core/stack.S
Normal file
@ -0,0 +1,13 @@
|
||||
.arch i386
|
||||
|
||||
/****************************************************************************
|
||||
* Internal stack
|
||||
****************************************************************************
|
||||
*/
|
||||
.section ".stack"
|
||||
.align 8
|
||||
.globl _stack
|
||||
_stack:
|
||||
.space 4096
|
||||
.globl _estack
|
||||
_estack:
|
Loading…
Reference in New Issue
Block a user