| ;------------------------------------------------------------------------------ | |
| ; | |
| ; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR> | |
| ; SPDX-License-Identifier: BSD-2-Clause-Patent | |
| ; | |
| ; Module Name: | |
| ; | |
| ; DisableInterrupts.Asm | |
| ; | |
| ; Abstract: | |
| ; | |
| ; DisableInterrupts function | |
| ; | |
| ; Notes: | |
| ; | |
| ;------------------------------------------------------------------------------ | |
| DEFAULT REL | |
| SECTION .text | |
| ;------------------------------------------------------------------------------ | |
| ; VOID | |
| ; EFIAPI | |
| ; DisableInterrupts ( | |
| ; VOID | |
| ; ); | |
| ;------------------------------------------------------------------------------ | |
| global ASM_PFX(DisableInterrupts) | |
| ASM_PFX(DisableInterrupts): | |
| cli | |
| ret | |