mirror of
https://github.com/ipxe/ipxe
synced 2025-12-30 04:28:12 +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:
|