Fixed linker warning about missing _NtProcessStartup()

svn path=/trunk/; revision=1421
This commit is contained in:
Eric Kohl 2000-11-01 12:45:53 +00:00
parent 55a9a7623e
commit e7f86f45fb
2 changed files with 51 additions and 56 deletions

View file

@ -3,16 +3,12 @@
#define NR_TASKS 128 #define NR_TASKS 128
.globl _start .globl _start
.globl _mainCRTStartup .globl _NtProcessStartup
.globl start
.globl _DllMainCRTStartup@12
.globl _init_stack .globl _init_stack
.globl _init_stack_top .globl _init_stack_top
_DllMainCRTStartup@12: _NtProcessStartup:
_mainCRTStartup:
_start: _start:
start:
lidt _idt_descr lidt _idt_descr
lgdt _gdt_descr lgdt _gdt_descr

View file

@ -9,6 +9,7 @@
#define MULTIBOOT_HEADER_FLAGS (0x00010003) #define MULTIBOOT_HEADER_FLAGS (0x00010003)
.globl _NtProcessStartup
.globl _start .globl _start
.globl _init_stack .globl _init_stack
.globl _init_stack_top .globl _init_stack_top
@ -22,6 +23,7 @@
* loader * loader
*/ */
_NtProcessStartup:
_start: _start:
jmp _multiboot_entry jmp _multiboot_entry
@ -717,6 +719,3 @@ _init_stack:
.fill 4096,1,0 .fill 4096,1,0
_init_stack_top: _init_stack_top: