• C Equivalent of assembler instruction ANL
    Assembler: ---------- CCAPM1 DATA 0C3h ANL CCAPM1, #00dh C equivalent ???? ----------------- sfr ccapm1 = 0xc3; ccapm1 = ccapm1 & ~(0x0d); or ccapm1 = ccapm1 & 0x0d; or ccapm1 = ccapm1...
  • NEON vs Intel SSE - equivalence of certain operations
    Note: This was originally posted on 26th August 2011 at http://forums.arm.com Hi, I'm having some trouble figuring out the NEON equivalence of a couple of Intel SSE operations. It seems that NEON is not...
  • Any equivalent of lwip_select() with Keil DS stack?
    I am porting a modbus stack into my current project. The source code is using lwIP stack which I don't. I am using mdk-pro dual stack with BSD socket. There are a few functions which I cannot find...
  • Equivalent code?
    Hello Everyone: In the following example seq_address is an unsigned long and obj->cmd_reg[] is an unsigned char array. seq_address = (ulong)obj->cmd_reg[3] << 24 + (ulong)obj->cmd_reg[2] << 16...
  • InterlockedExchangeAdd equivalent
    Note: This was originally posted on 11th February 2013 at http://forums.arm.com I'm porting a Windows application to an ARM® Cortex-A9 based system running Ubuntu 12.04 and I need something equivalent...