mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed linker warning about missing _NtProcessStartup()
svn path=/trunk/; revision=1421
This commit is contained in:
parent
55a9a7623e
commit
e7f86f45fb
2 changed files with 51 additions and 56 deletions
|
@ -3,16 +3,12 @@
|
|||
#define NR_TASKS 128
|
||||
|
||||
.globl _start
|
||||
.globl _mainCRTStartup
|
||||
.globl start
|
||||
.globl _DllMainCRTStartup@12
|
||||
.globl _NtProcessStartup
|
||||
.globl _init_stack
|
||||
.globl _init_stack_top
|
||||
|
||||
_DllMainCRTStartup@12:
|
||||
_mainCRTStartup:
|
||||
_NtProcessStartup:
|
||||
_start:
|
||||
start:
|
||||
lidt _idt_descr
|
||||
lgdt _gdt_descr
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#define MULTIBOOT_HEADER_FLAGS (0x00010003)
|
||||
|
||||
.globl _NtProcessStartup
|
||||
.globl _start
|
||||
.globl _init_stack
|
||||
.globl _init_stack_top
|
||||
|
@ -22,6 +23,7 @@
|
|||
* loader
|
||||
*/
|
||||
|
||||
_NtProcessStartup:
|
||||
_start:
|
||||
jmp _multiboot_entry
|
||||
|
||||
|
@ -717,6 +719,3 @@ _init_stack:
|
|||
.fill 4096,1,0
|
||||
_init_stack_top:
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue