acumentech 0 Report post Posted October 18, 2005 Here I enjoy using Xisto, as it help me getting my answers.Can anybody find a some useful materials on FAR,NEAR and HUGE pointers.I wanna access the memory above 640kb in turbo C/C++and mail acumentech@gmail.comthanks Share this post Link to post Share on other sites
dexter 0 Report post Posted October 25, 2005 Er, upgrade your compiler? Share this post Link to post Share on other sites
kvkv 0 Report post Posted January 30, 2006 I think this is applicable to dos progams. In *nix and windows systems, it doesn't make sense.NEAR pointers are the normal pointers we use which can access upto max of 65,535 bytes using the 16 bit registers.FAR and HUGE ptrs allows us to access memory higher than 65,535 by using two registers (one for offset and other for segment).FAR pts are used in non-normalized mode (like TSR progs) where as HUGE ptrs are normalized (normal progs). Share this post Link to post Share on other sites