Changeset 2884 for trunk/kLdr/kLdrA-os2.asm
- Timestamp:
- Nov 18, 2006, 1:55:48 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrA-os2.asm
r2834 r2884 39 39 ; kLdrLoadExe wrapper which loads the bootstrap stack. 40 40 ; 41 global _k ldrLoadExe42 _k ldrLoadExe:41 global _kLdrDyldLoadExe 42 _kLdrDyldLoadExe: 43 43 push ebp 44 44 mov ebp, esp 45 45 46 46 ; switch stack. 47 extern _abStack48 lea esp, [_abStack + 8192 - 4]47 ; extern _abStack 48 ; lea esp, [_abStack + 8192 - 4] 49 49 push dword [ebp + 8 + 20] 50 50 push dword [ebp + 8 + 16] … … 53 53 54 54 ; call worker on the new stack. 55 extern kLdrLoadExe56 call kLdrLoadExe55 extern _kldrDyldLoadExe 56 call _kldrDyldLoadExe 57 57 58 58 ; we shouldn't return!
Note:
See TracChangeset
for help on using the changeset viewer.