• LARGE ARRAY
    Hi... Is there any way to declare large size of array? example: char arr[200*1024];//200kb Thanks
  • init of large arrays
    Hi all, what would be the best way to init a huge array, which will never change his values? Will the array affect the stack if I use const aray[][] or should I use static const array[][]? What...
  • Indexing large arrays
    I want to have an array that is larger an 65535 bytes. I need to be able to address this array a byte at a time. Can I simply use a index that is defined as a long? Do I have to break the array up...
  • Large bit fields
    Hi, I'm using c51 on 8051. Is It possible to do a struct with large bit fields like: struct bit_st { int x :25; int y :22; int reserved :1; } (I know that int mean 16bit) Tnx, ...
  • 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...