-
Hello, the description of minimal mode (the one I found) states that some instruction attributes are set, e.g, ZYDIS_ATTRIBUTE_IS_RELATIVE while others are not (the description states "most" are not.) Is there a list somewhere (other than reading the source code) of the attributes that are set in minimal mode ? (iow, can be relied upon.) Thank you for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @440bx , it's not documented anywhere currently. From memory, all the encoding related ones should be available:
besides that, all the segment ones:
and the mentioned This should be everything. |
Beta Was this translation helpful? Give feedback.
Hi @440bx ,
it's not documented anywhere currently. From memory, all the encoding related ones should be available:
HAS_MODRM
HAS_SIB
besides that, all the segment ones:
HAS_SEGMENT_CS
and the mentioned
IS_RELATIVE
plusACCEPTS_LOCK
/HAS_LOCK
.This should be everything.