// Defines constants and accessor classes to assemble, disassemble and // simulate ARM instructions. // // Section references in the code refer to the "ARM Architecture // Reference Manual ARMv7-A and ARMv7-R edition", issue C.b (24 July // 2012). // // Constants for specific fields are defined in their respective named enums. // General constants are in an anonymous enum in class Instr.
// 4 bits option for the dmb instruction. // Order and values follows those of the ARM Architecture Reference Manual. enum DmbOptions {
SY = 0xf,
ST = 0xe,
ISH = 0xb,
ISHST = 0xa,
NSH = 0x7,
NSHST = 0x6
};
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.