Ignore:
Timestamp:
Nov 18, 2006, 1:55:48 PM (19 years ago)
Author:
bird
Message:

buildable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrA-os2.asm

    r2834 r2884  
    3939; kLdrLoadExe wrapper which loads the bootstrap stack.
    4040;
    41 global _kldrLoadExe
    42 _kldrLoadExe:
     41global _kLdrDyldLoadExe
     42_kLdrDyldLoadExe:
    4343    push    ebp
    4444    mov     ebp, esp
    4545
    4646    ; switch stack.
    47     extern _abStack
    48     lea     esp, [_abStack + 8192 - 4]
     47;    extern _abStack
     48;    lea     esp, [_abStack + 8192 - 4]
    4949    push    dword [ebp + 8 + 20]
    5050    push    dword [ebp + 8 + 16]
     
    5353
    5454    ; call worker on the new stack.
    55     extern  kLdrLoadExe
    56     call    kLdrLoadExe
     55    extern  _kldrDyldLoadExe
     56    call    _kldrDyldLoadExe
    5757
    5858    ; we shouldn't return!
Note: See TracChangeset for help on using the changeset viewer.