mirror of https://github.com/xemu-project/xemu.git
target-ppc: Introduce Feature Flag for Transactional Memory
Add a flag (POWERPC_FLAG_TM) for the Transactional Memory Facility introduced in Power ISA 2.07. Signed-off-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
f90468b646
commit
e43668a7d2
target-ppc
|
@ -584,6 +584,8 @@ enum {
|
|||
POWERPC_FLAG_CFAR = 0x00040000,
|
||||
/* Has VSX */
|
||||
POWERPC_FLAG_VSX = 0x00080000,
|
||||
/* Has Transaction Memory (ISA 2.07) */
|
||||
POWERPC_FLAG_TM = 0x00100000,
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue