On 06/06/2016 03:37 AM, Michael Rolnik wrote:
+void avr_decode(uint32_t pc, uint32_t *length, uint32_t code,
translate_function_t *translate)
+{
+ uint32_t opcode = extract32(code, 0, 16);
+
+ switch (opcode & 0x0000d000) {
+ case 0x00000000: {
+ uint32_t opcode = extract32(code, 0, 16);
+ switch (opcode & 0x00002c00) {
+ case 0x00000000: {
+ uint32_t opcode = extract32(code, 0, 16);
I thought you said you fixed these shadowing declarations. r~
