Hey guys,
I am trying to compile the source for TWIRP in codevision. I am getting these errors.
LDS r26,_outbufpr //trying to load from r11 using LDS??? error (1194) invalid number STS _outbufpr,R26 //trying to load from r11 using LDS??? error (1210) invalid number lds r26,_inbufpw //trying to load from r12 using LDS??? error (1272) invalid number sts _inbufpw,r26 //trying to load from r12 using LDS??? error (1286) invalid number The above names are defined below: //this from the include file .DEF _outbufpw=R10 .DEF _outbufpr=R11 .DEF _inbufpw=R12 .DEF _inbufpr=R13 and here: //this from the IRv4.c register byte b, pw, n, bursts; byte *outbufpw, *outbufpr; byte *inbufpw, *inbufpr; byte k1; byte signature[6];
Obviously I am not the only one with this problem????
Anyone have a solution?
Much appreciated.