mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 04:45:31 +00:00
x86: host-phys-bits-limit option
Backports part of commit 258fe08bd341d2e230676228307294e41f33002c from qemu. Namely, just adding the struct member.
This commit is contained in:
parent
bf6192276b
commit
3eb700bec7
|
@ -1373,6 +1373,9 @@ typedef struct X86CPU {
|
||||||
/* if true override the phys_bits value with a value read from the host */
|
/* if true override the phys_bits value with a value read from the host */
|
||||||
bool host_phys_bits;
|
bool host_phys_bits;
|
||||||
|
|
||||||
|
/* if set, limit maximum value for phys_bits when host_phys_bits is true */
|
||||||
|
uint8_t host_phys_bits_limit;
|
||||||
|
|
||||||
/* Number of physical address bits supported */
|
/* Number of physical address bits supported */
|
||||||
uint32_t phys_bits;
|
uint32_t phys_bits;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue