Clamp 286/386 prefetch queue size.

This commit is contained in:
SarahW 2019-04-24 17:49:28 +01:00
commit b3f61c09c0

View file

@ -212,6 +212,8 @@ static void prefetch_run(int instr_cycles, int bytes, int modrm, int reads, int
}
prefetch_prefixes = 0;
if (prefetch_bytes > 16)
prefetch_bytes = 16;
}
static void prefetch_flush()