• Large memory model compilation of Code.
    Hi All To define project compilation model as large, will the folowing change to statement in "xxx.m51" file work ? "MEMORY MODEL: SMALL" to "MEMORY MODEL: LARGE" since i am using si-labs...
  • AT89C51ED2 startup code for large XRAM
    Does anyone have an example of a startup.a51 file or any other method of initialising the XRAM to maximum 1792 byte size on an Atmel AT89C51ED2?
  • 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...
  • LARGE ARRAY
    Hi... Is there any way to declare large size of array? example: char arr[200*1024];//200kb Thanks
  • A simple C code doesn't work in LARGE mode
    A Keil C program, it will send data "1" when it receives data "55H" on serial port. The code is as below: #include <REG52.H> void main (void) { SP=0x5F; TMOD=0x20; //timer1,Mode2 TH1=0xFD; ...