3 kbyte of data on MC9S08AW32

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

3 kbyte of data on MC9S08AW32

Jump to solution
972 Views
Pablos
Contributor I

3 kbyte of data on MC9S08AW32

I tried to write on ROM about 3Kbyte of constant data with the following instruction

#pragma INTO_ROM

byte  Name[200][15] =

{ data,data,.......,

                data

 };

the result is  an error message in linking

"L1102 out of allocation space in segment RAM"

How is it possible to solve?

Labels (1)
0 Kudos
1 Solution
210 Views
isionous
Contributor III

Declare the variable as a const.

View solution in original post

0 Kudos
1 Reply
211 Views
isionous
Contributor III

Declare the variable as a const.

0 Kudos