For the built-in purpose, I use far pointers to access some parts of the memory card.
next to the pointer (without explicitly indicating __near):
unsigned int * VariableOnePtr;
Pointer to the nearest pointer:
unsigned int ** VariableOnePtrPtr;
far pointer:
unsigned int * __ far VariableTwoPtr;
What is the correct way to declare a pointer to a far pointer? Should this pointer be the biggest pointer?
source
share