Newer
Older
AMI-Aptio-BIOS-Reversed / PurleyPlatPkg / Platform / Pei / EarlyVideoPei / ImageRenderAllocContext.c
@Ajax Dong Ajax Dong 2 days ago 189 bytes Full restructure
_DWORD *ImageRenderAllocContext()
{
  _DWORD *result; // eax

  result = (_DWORD *)PeiAllocatePool((void *)8);
  if ( result )
  {
    *result = 0;
    result[1] = 0;
  }
  return result;
}