[EMAIL PROTECTED] writes:
> asm("cop2a %0, %1;", :: "r" (cp2rb(i)) : "r" (cp2rb(j)));In addition to Daniel's reply: you wouldn't want to use "r" here. That's for general registers only. The MIPS port does in theory support coprocessors, but the functionality isn't tested much (if at all). The constraint for coprocessor 2 registers is "C". Richard
