How to force the compiler to use LOGICAL PAGE address instead of GLOBAL address. Target - S12XEP100

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

How to force the compiler to use LOGICAL PAGE address instead of GLOBAL address. Target - S12XEP100

Jump to solution
1,332 Views
sep2kor
Contributor III

Hi,

 

 I want to know, how to force the compiler (MetroWerks) to use LOGICAL PAGE address and not the GLOBAL address.

 

Eg:

const uint32 Buffer;

 

function

{

     unit32 * __far BufferAddress; /* RAM variable */

 

     BufferAddress = &Buffer;

}

 

The variable is taking the global address of the constant "Buffer". I want the RAM variable "BufferAddress" to take the logical PAGE address of the constant.

 

How to force the compiler to use the logical PAGE address?

 

I am using S12XEP100 target.

 

Thanks in advance!

Labels (1)
Tags (1)
0 Kudos
Reply
1 Solution
950 Views
kef
Specialist I

     unit32 * __rptr BufferAddress;

 

See  <CW root>\Help\PDF\Compiler_HC12.pdf . These pdf's and release notes are always more fresh and full than online help.

 

View solution in original post

0 Kudos
Reply
1 Reply
951 Views
kef
Specialist I

     unit32 * __rptr BufferAddress;

 

See  <CW root>\Help\PDF\Compiler_HC12.pdf . These pdf's and release notes are always more fresh and full than online help.

 

0 Kudos
Reply