This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
168 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
page ,132 | ||
title exsup.asm | ||
;*** | ||
;exsup.asm | ||
; | ||
; Copyright (c) Microsoft Corporation. All rights reserved. | ||
; | ||
;Purpose: | ||
; Exception handling for i386. | ||
; | ||
;******************************************************************************* | ||
|
||
.686 | ||
.model flat | ||
|
||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
page ,132 | ||
title exsup2.asm | ||
;*** | ||
;exsup2.asm | ||
; | ||
; Copyright (c) Microsoft Corporation. All rights reserved. | ||
; | ||
;Purpose: | ||
; Exception handling for i386. | ||
; | ||
;******************************************************************************* | ||
|
||
.686 | ||
.model flat | ||
|
||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
page ,132 | ||
title exsup3.asm | ||
;*** | ||
;exsup3.asm | ||
; | ||
; Copyright (c) Microsoft Corporation. All rights reserved. | ||
; | ||
;Purpose: | ||
; Exception handling for i386. | ||
; | ||
;******************************************************************************* | ||
|
||
.686 | ||
.model flat | ||
|
||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
page ,132 | ||
title exsup4.asm | ||
;*** | ||
;exsup4.asm - defines _EH4_GlobalUnwind2 | ||
; | ||
; Copyright (c) Microsoft Corporation. All rights reserved. | ||
; | ||
;Purpose: | ||
; Exception handling for i386. | ||
; | ||
;******************************************************************************* | ||
|
||
.686 | ||
.model flat | ||
|
||
extrn __imp__RtlUnwind@16:dword | ||
|
||
.code | ||
|
||
ALIAS <@_EH4_GlobalUnwind2@8> = <_EH4_GlobalUnwind2> | ||
|
||
;void __fastcall | ||
;_EH4_GlobalUnwind2( | ||
; _In_opt_ PEXCEPTION_REGISTRATION_RECORD EstablisherFrame, | ||
; _In_opt_ PEXCEPTION_RECORD ExceptionRecord | ||
; ); | ||
|
||
_EH4_GlobalUnwind2 PROC | ||
push ebp | ||
mov ebp, esp | ||
push ebx | ||
push esi | ||
push edi | ||
push 0 ; ReturnValue | ||
push edx ; ExceptionRecord | ||
push offset ReturnPoint ; TargetIp | ||
push ecx ; TargetFrame | ||
call __imp__RtlUnwind@16 | ||
|
||
ReturnPoint: | ||
pop edi | ||
pop esi | ||
pop ebx | ||
pop ebp | ||
retn | ||
_EH4_GlobalUnwind2 ENDP | ||
|
||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters