mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-05 11:05:07 +00: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:
|