/* * True if current instruction is in an IT block.
*/ #define in_it_block(cpsr) ((cpsr & 0x06000c00) != 0x00000000)
/* * Return the condition code to check for the currently executing instruction. * This is in ITSTATE<7:4> which is in CPSR<15:12> but is only valid if * in_it_block returns true.
*/ #define current_cond(cpsr) ((cpsr >> 12) & 0xf)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.