repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
KVM: nVMX: Fix returned value of MSR_IA32_VMX_VMCS_ENUM
[linux/fpc-iii.git]
/
arch
/
x86
/
realmode
/
rm
/
stack.S
blob
867ae87adfae8d22cff122fc8163ffc7461d2cc9
1
/*
2
* Common heap and stack allocations
3
*/
4
5
#include <linux/linkage.h>
6
7
.data
8
GLOBAL(HEAP)
9
.long rm_heap
10
GLOBAL(heap_end)
11
.long rm_stack
12
13
.bss
14
.balign 16
15
GLOBAL(rm_heap)
16
.space 2048
17
GLOBAL(rm_stack)
18
.space 2048
19
GLOBAL(rm_stack_end)