assembler: Some r15 fixes
[b43-tools.git] / disassembler / main.c
index e55a5459578f60c84f3203d29a683fd6cd9b96af..43415a1d003575c4b92add7de4e7a5d9cb2368f3 100644 (file)
@@ -94,7 +94,7 @@ static const char * disasm_indirect_mem_operand(unsigned int operand)
 
        ret = xmalloc(12);
        snprintf(ret, 12, "[0x%02X,off%u]",
-                (operand & 0x3F), ((operand >> 6) & 0x7));
+                (operand & 0x3F), ((operand >> 6) & 0x7)); //FIXME r15?
 
        return ret;
 }