• large size of array defined in ROM
    It is a bank code project, total 16 banks and 512K byte extern rom. there are two large size of const arrays which both are larger than 10KByte. Using LX51 linker. I definded these two arrays as below...
  • Rom Monitor
    I hava a Infineon Rom Monitor. When I run a hello world program in simulator it is true and "Hello World" write in serial port and I can see in serial window, but when I run in Rom monitor, it can't...
  • array to array
    for example i have got three constant array code unsigned char a_0[]={0x54,0x25,0x11,0xff,0x21}; code unsigned char a_1[]={0x51,0x45,0x55,0x85}; code unsigned char a_2[]={0x24,0x47}; in program...
  • In an array.
    Hello, I want to convert a 14 digit word (which is a float) to the elements of an array.EXample:987654321012.34 to b[0]=9;b[1]=8;b[2]=7...etc..Can anyone please help..Thanks in advance...
  • Arrays
    As a fairly new student in C I am having diffictly with arrays. I have a string of numbers that I am tring to split up into smaller strings to convert them to integers. I have made the code as basic...