mirror of
https://github.com/ipxe/ipxe
synced 2025-12-22 21:11:03 +03:00
14 lines
281 B
ArmAsm
14 lines
281 B
ArmAsm
|
|
.arch i386
|
||
|
|
|
||
|
|
/****************************************************************************
|
||
|
|
* Internal stack
|
||
|
|
****************************************************************************
|
||
|
|
*/
|
||
|
|
.section ".stack"
|
||
|
|
.align 8
|
||
|
|
.globl _stack
|
||
|
|
_stack:
|
||
|
|
.space 4096
|
||
|
|
.globl _estack
|
||
|
|
_estack:
|