Revision e1f3808e target-m68k/cpu.h

b/target-m68k/cpu.h
108 108
    int exception_index;
109 109
    int interrupt_request;
110 110
    int user_mode_only;
111
    int halted;
111
    uint32_t halted;
112 112

  
113 113
    int pending_vector;
114 114
    int pending_level;
......
120 120
    uint32_t features;
121 121
} CPUM68KState;
122 122

  
123
void m68k_tcg_init(void);
123 124
CPUM68KState *cpu_m68k_init(const char *cpu_model);
124 125
int cpu_m68k_exec(CPUM68KState *s);
125 126
void cpu_m68k_close(CPUM68KState *s);
......
141 142
    CC_OP_CMPW,  /* CC_DEST = result, CC_SRC = source */
142 143
    CC_OP_ADDX,  /* CC_DEST = result, CC_SRC = source */
143 144
    CC_OP_SUBX,  /* CC_DEST = result, CC_SRC = source */
144
    CC_OP_SHL,   /* CC_DEST = source, CC_SRC = shift */
145
    CC_OP_SHR,   /* CC_DEST = source, CC_SRC = shift */
146
    CC_OP_SAR,   /* CC_DEST = source, CC_SRC = shift */
145
    CC_OP_SHIFT, /* CC_DEST = result, CC_SRC = carry */
147 146
};
148 147

  
149 148
#define CCF_C 0x01

Also available in: Unified diff