URL
https://opencores.org/ocsvn/or2k/or2k/trunk
Subversion Repositories or2k
[/] [or2k/] [trunk/] [analysis-bin/] [insnanalysis/] [insnanalysis.h] - Rev 19
Go to most recent revision | Compare with Previous | Blame | View Log
/* Header for instruction analysis program. Define instruction sets here */ // Settings for or1k 32-bit instruction analysis #include "stdint.h" #include "or1k-32-insn.h" // 4 bytes per instruction #define INSN_SIZE_BYTES 4 typedef uint32_t instruction; typedef struct or1k_32_instruction_properties instruction_properties ; #define reset_instruction_properties(x) memset(x, 0, sizeof(instruction_properties))
Go to most recent revision | Compare with Previous | Blame | View Log