• GNU-Tool-Prefix??
    I am using Keil µVision3 for simulating an ARM processor. To use CodeSourcery toolchain I set * GNU-Tool-Prefix: arm-none-linux-gnueabi- * Cygnus Folder: C:\Program Files\CodeSourcery\Sourcery...
  • Sourcery GCC prefix
    Hi, which gnu-tool-prefix do I have to use in order to work with Sourcery and arm-none-linux-gnueabi? arm-none-linux-gnueabi or arm-none-linux isn't working... getting the error msg "failed to...
  • how to add prefix 0x to hex?
    Hi! i am using P89c669 as master and P89v51 as Slave.The Slave program it self by using IAP method.the hex file for the program is received form master.so the master have the hex file.now the problem...
  • Bit Operator
    Hi , A "bit" of a fundamental query. Suppose I declare two bit variables bit MyBit1,MyBit2; I need to do something if both bits are 1. Are these two methods equivalent: if(MyBit1...
  • Bit operations
    I need to shift data into serail input register bit-by-bit. It would be nice, if the compiler would support asm blocks in a C program. 1. Shifting a byte is done by rotatig accumulator left, whereby...