diff options
Diffstat (limited to 'roms/ipxe/src/arch/i386/core/stack.S')
-rw-r--r-- | roms/ipxe/src/arch/i386/core/stack.S | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roms/ipxe/src/arch/i386/core/stack.S b/roms/ipxe/src/arch/i386/core/stack.S new file mode 100644 index 00000000..737ec0ee --- /dev/null +++ b/roms/ipxe/src/arch/i386/core/stack.S @@ -0,0 +1,15 @@ +FILE_LICENCE ( GPL2_OR_LATER ) + + .arch i386 + +/**************************************************************************** + * Internal stack + **************************************************************************** + */ + .section ".stack", "aw", @nobits + .align 8 + .globl _stack +_stack: + .space 4096 + .globl _estack +_estack: |