• coufused by array and shift bit
    Hi, The code is given below. void CSToOut(void) { static unsigned char data bSimulate[8] ; int I; for( I = 0 ;I < 8;I ++) { bSimulate[I] = 0x01 << I ; ComOutChar( bSimulate[I] ); } } ...
  • shifting bits in multiple bytes array
    Hello All, I have non-standart function that shifting bits in multi bytes. Syntax: shift_left (address, bytes, value); Parameters: address is a pointer to memory. bytes is a count of the...
  • shifting bits in multiple bytes array
    Hello All, I have non-standart function that shifting bits in multi bytes. Syntax: shift_left (address, bytes, value); Parameters: address is a pointer to memory. bytes is a count of the...
  • coufused by array and shift bit
    Hi, The code is given below. void CSToOut(void) { static unsigned char data bSimulate[8] ; int I; for( I = 0 ;I < 8;I ++) { bSimulate[I] = 0x01 << I ; ComOutChar( bSimulate[I] ); } } ...
  • ARM shifting instruction with register shift length
    Note: This was originally posted on 26th October 2009 at http://forums.arm.com Hi, For fun, I'm trying to write RTL for my own processor implementing the ARM v4 ISA. I have a question regarding the ARM...