12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*++
- Copyright (c) 2014 Minoca Corp. All Rights Reserved
- Module Name:
- archlib.c
- Abstract:
- This module implements the UEFI architecture support library C routines.
- Author:
- Evan Green 27-Mar-2014
- Environment:
- Firmware
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include "ueficore.h"
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- VOID
- EfiCoreInvalidateInstructionCacheRange (
- VOID *Address,
- UINTN Length
- )
- /*++
- Routine Description:
- This routine invalidates a region of memory in the instruction cache.
- Arguments:
- Address - Supplies the address to invalidate. If translation is enabled,
- this is a virtual address.
- Length - Supplies the number of bytes in the region to invalidate.
- Return Value:
- None.
- --*/
- {
- return;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|