Newer
Older
AMI-Aptio-BIOS-Reversed / EarlyVideoPei / BitmapGetImageSize.c
@Ajax Dong Ajax Dong 2 days ago 225 bytes Init
int __fastcall BitmapGetImageSize(int count)
{
  int v1; // edx
  int v2; // ecx

  v1 = 10 * (count / 3);
  v2 = count % 3 - 1;
  if ( v2 )
  {
    if ( v2 == 1 )
      v1 += 7;
  }
  else
  {
    v1 += 4;
  }
  return v1;
}