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/kLdrExeStub-os2.asm

    r2834 r2884  
    1313
    1414struc KLDRARGS
    15     .fFlags         resd 260
     15    .fFlags         resd 1
     16    .enmSearch      resd 1
    1617    .szExecutable   resb 260
    17     .szLibPath      resb (4096 - 260 - 260 - 8)
     18    .szDefPrefix    resb 16
     19    .szDefSuffix    resb 16
     20    .szLibPath      resb (4096 - (4 + 4 + 16 + 16 + 260))
    1821endstruc
    1922
    20 extern _kLdrLoadExe
     23extern _kLdrDyldLoadExe
    2124
    2225
     
    2427..start:
    2528    push    args
    26     jmp     _kLdrLoadExe
     29    jmp     _kLdrDyldLoadExe
    2730
    2831;
     
    3336istruc KLDRARGS
    3437    at KLDRARGS.fFlags,         dd 0
    35     at KLDRARGS.szExecutable,   db 'hello.lx'
     38    at KLDRARGS.enmSearch,      dd 2 ;KLDRDYLD_SEARCH_HOST
     39    at KLDRARGS.szDefPrefix,    db ''
     40    at KLDRARGS.szDefSuffix,    db '.dll'
     41;    at KLDRARGS.szExecutable,   db 'tst-0.exe'
    3642    at KLDRARGS.szLibPath,      db ''
    3743iend
Note: See TracChangeset for help on using the changeset viewer.