mirror of https://github.com/acidanthera/audk.git
Fix CRLF format
Signed-off-by: Tian, Hot <hot.tian@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15154 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c27b9ffe86
commit
4c8f6044a2
File diff suppressed because it is too large
Load Diff
|
@ -1,72 +1,72 @@
|
||||||
## @file
|
## @file
|
||||||
# Interrupt Redirection Template
|
# Interrupt Redirection Template
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions
|
# are licensed and made available under the terms and conditions
|
||||||
# of the BSD License which accompanies this distribution. The
|
# of the BSD License which accompanies this distribution. The
|
||||||
# full text of the license may be found at
|
# full text of the license may be found at
|
||||||
# http://opensource.org/licenses/bsd-license.php
|
# http://opensource.org/licenses/bsd-license.php
|
||||||
#
|
#
|
||||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
#
|
#
|
||||||
##
|
##
|
||||||
|
|
||||||
#text SEGMENT
|
#text SEGMENT
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
# Procedure: InterruptRedirectionTemplate: Redirects interrupts 0x68-0x6F
|
# Procedure: InterruptRedirectionTemplate: Redirects interrupts 0x68-0x6F
|
||||||
#
|
#
|
||||||
# Input: None
|
# Input: None
|
||||||
#
|
#
|
||||||
# Output: None
|
# Output: None
|
||||||
#
|
#
|
||||||
# Prototype: VOID
|
# Prototype: VOID
|
||||||
# InterruptRedirectionTemplate (
|
# InterruptRedirectionTemplate (
|
||||||
# VOID
|
# VOID
|
||||||
# );
|
# );
|
||||||
#
|
#
|
||||||
# Saves: None
|
# Saves: None
|
||||||
#
|
#
|
||||||
# Modified: None
|
# Modified: None
|
||||||
#
|
#
|
||||||
# Description: Contains the code that is copied into low memory (below 640K).
|
# Description: Contains the code that is copied into low memory (below 640K).
|
||||||
# This code reflects interrupts 0x68-0x6f to interrupts 0x08-0x0f.
|
# This code reflects interrupts 0x68-0x6f to interrupts 0x08-0x0f.
|
||||||
# This template must be copied into low memory, and the IDT entries
|
# This template must be copied into low memory, and the IDT entries
|
||||||
# 0x68-0x6F must be point to the low memory copy of this code. Each
|
# 0x68-0x6F must be point to the low memory copy of this code. Each
|
||||||
# entry is 4 bytes long, so IDT entries 0x68-0x6F can be easily
|
# entry is 4 bytes long, so IDT entries 0x68-0x6F can be easily
|
||||||
# computed.
|
# computed.
|
||||||
#
|
#
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
ASM_GLOBAL ASM_PFX(InterruptRedirectionTemplate)
|
ASM_GLOBAL ASM_PFX(InterruptRedirectionTemplate)
|
||||||
ASM_PFX(InterruptRedirectionTemplate):
|
ASM_PFX(InterruptRedirectionTemplate):
|
||||||
int $0x08
|
int $0x08
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x09
|
int $0x09
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0a
|
int $0x0a
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0b
|
int $0x0b
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0c
|
int $0x0c
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0d
|
int $0x0d
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0e
|
int $0x0e
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
int $0x0f
|
int $0x0f
|
||||||
.byte 0x0cf # IRET
|
.byte 0x0cf # IRET
|
||||||
nop
|
nop
|
||||||
|
|
||||||
#END
|
#END
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue