We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631ba5a commit eba6814Copy full SHA for eba6814
target/avr/translate.c
@@ -70,11 +70,9 @@ static const char reg_names[NUMBER_OF_CPU_REGISTERS][8] = {
70
};
71
#define REG(x) (cpu_r[x])
72
73
-enum {
74
- DISAS_EXIT = DISAS_TARGET_0, /* We want return to the cpu main loop. */
75
- DISAS_LOOKUP = DISAS_TARGET_1, /* We have a variable condition exit. */
76
- DISAS_CHAIN = DISAS_TARGET_2, /* We have a single condition exit. */
77
-};
+#define DISAS_EXIT DISAS_TARGET_0 /* We want return to the cpu main loop. */
+#define DISAS_LOOKUP DISAS_TARGET_1 /* We have a variable condition exit. */
+#define DISAS_CHAIN DISAS_TARGET_2 /* We have a single condition exit. */
78
79
typedef struct DisasContext DisasContext;
80
0 commit comments