]> git.proxmox.com Git - mirror_edk2.git/commitdiff
SourceLevelDebugPkg PeCoffExtraActionLibDebug: Convert Ia32/IntHandler.asm
authorLiming Gao <liming.gao@intel.com>
Tue, 14 Jun 2016 08:43:58 +0000 (16:43 +0800)
committerLiming Gao <liming.gao@intel.com>
Tue, 28 Jun 2016 01:52:22 +0000 (09:52 +0800)
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/IntHandler.asm to Ia32/IntHandler.nasm.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/IntHandler.nasm [new file with mode: 0644]

diff --git a/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/IntHandler.nasm b/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/IntHandler.nasm
new file mode 100644 (file)
index 0000000..9d7d2a2
--- /dev/null
@@ -0,0 +1,28 @@
+;------------------------------------------------------------------------------\r
+;\r
+; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
+; This program and the accompanying materials\r
+; are licensed and made available under the terms and conditions of the BSD License\r
+; which accompanies this distribution.  The full text of the license may be found at\r
+; http://opensource.org/licenses/bsd-license.php.\r
+;\r
+; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+;\r
+; Module Name:\r
+;\r
+;   IntHandler.nasm\r
+;\r
+; Abstract:\r
+;\r
+;   Assembly interrupt handler function.\r
+;\r
+;------------------------------------------------------------------------------\r
+\r
+global ASM_PFX(AsmInterruptHandle)\r
+\r
+SECTION .text\r
+ASM_PFX(AsmInterruptHandle):\r
+    cli\r
+    mov   al, 1\r
+    iretd\r