• Memcpy
    Hello, I am new to embedded programming, particularly C, and I am trying to write bytes to code memory, within my already executing code. The purpose is to see if I can write a program to program...
  • in C51 ,SFR Bit ??
    Programe is following #,,,, sfr p0 = 0x80; sbit p10 = p0^0; sbit p11 = p0^1; void main(void) { ... fc(p10); } void fc(bit bv) { bv=1; ..... // delay bv=0; } but output of p10 is...
  • Memcpy
    Hi,    I'm trying to simulate C and Assembly code on DS-5 Simulator  with Cortex-A8 as a bare metal application on Linux. Im having issue with the memcpy.     Im trying to use Memcpy( a, b, size). Here...
  • SFR'S
    How do I view the contents of sfr's in the UV2 debugger?
  • Large memcpy
    We are using Keil C-51 V7.06. There is a structure defined: typedef struct { unsigned char address_bus_h; unsigned char address_bus_l; unsigned char data_bus; }instbus_raw_t; Using three...