SourceLevelDebugPkg: Remove X86 ASM and S files

NASM has replaced ASM and S files.
1. Remove ASM from all modules.
2. Remove S files from the drivers only.
3. https://bugzilla.tianocore.org/show_bug.cgi?id=881
After NASM is updated, S files can be removed from Library.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
Liming Gao
2018-06-04 13:36:30 +08:00
parent ccbd8d84a6
commit ec51c05936
8 changed files with 4 additions and 901 deletions

View File

@@ -1,33 +0,0 @@
;------------------------------------------------------------------------------
;
; Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distribution. The full text of the license may be found at
; http://opensource.org/licenses/bsd-license.php.
;
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
;
; Module Name:
;
; IntHandler.asm
;
; Abstract:
;
; Assembly interrupt handler function.
;
;------------------------------------------------------------------------------
.686p
.model flat,c
public AsmInterruptHandle
.code
AsmInterruptHandle:
cli
mov al, 1
iretd
END

View File

@@ -1,7 +1,7 @@
## @file
# PeCoffExtraAction Library to support source level debug.
#
# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -34,13 +34,11 @@
[Sources.IA32]
Ia32/IntHandlerFuncs.c
Ia32/IntHandler.asm
Ia32/IntHandler.nasm
Ia32/IntHandler.S
[Sources.X64]
X64/IntHandlerFuncs.c
X64/IntHandler.asm
X64/IntHandler.nasm
X64/IntHandler.S

View File

@@ -1,29 +0,0 @@
;------------------------------------------------------------------------------
;
; Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distribution. The full text of the license may be found at
; http://opensource.org/licenses/bsd-license.php.
;
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
;
; Module Name:
;
; IntHandler.asm
;
; Abstract:
;
; Assembly interrupt handler function.
;
;------------------------------------------------------------------------------
public AsmInterruptHandle
.code
AsmInterruptHandle:
cli
mov al, 1
iretq
END